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	Odm_available             *bool
34	Product_available         *bool
35	Recovery_available        *bool
36	Generated_sources         []string
37	Generated_headers         []string
38	Shared_libs               []string
39	Static_libs               []string
40	Export_shared_lib_headers []string
41	Export_static_lib_headers []string
42	Export_generated_headers  []string
43	Double_loadable           *bool
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	Min_sdk_version *string
59}
60
61type fuzzConfig struct {
62	Fuzz_on_haiku_device *bool
63}
64
65type fuzzProperties struct {
66	Data        []string
67	Fuzz_config *fuzzConfig
68}
69