1// Copyright (C) 2017 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package hidl
16
17type nameProperties struct {
18	Name *string
19}
20
21type fileGroupProperties struct {
22	Name  *string
23	Owner *string
24	Srcs  []string
25}
26
27type ccProperties struct {
28	Name                      *string
29	Owner                     *string
30	Defaults                  []string
31	Host_supported            *bool
32	Vendor_available          *bool
33	Recovery_available        *bool
34	Generated_sources         []string
35	Generated_headers         []string
36	Group_static_libs         *bool
37	Shared_libs               []string
38	Static_libs               []string
39	Export_shared_lib_headers []string
40	Export_static_lib_headers []string
41	Export_generated_headers  []string
42	Double_loadable           *bool
43	Cflags                    []string
44	Apex_available            []string
45	Min_sdk_version           *string
46}
47
48type javaProperties struct {
49	Name           *string
50	Owner          *string
51	Defaults       []string
52	Installable    *bool
53	Sdk_version    *string
54	Srcs           []string
55	Libs           []string
56	Static_libs    []string
57	Apex_available []string
58}
59
60type fuzzConfig struct {
61	Fuzz_on_haiku_device *bool
62}
63
64type fuzzProperties struct {
65	Data        []string
66	Fuzz_config *fuzzConfig
67}
68