• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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	Group_static_libs         *bool
39	Shared_libs               []string
40	Static_libs               []string
41	Export_shared_lib_headers []string
42	Export_static_lib_headers []string
43	Export_generated_headers  []string
44	Double_loadable           *bool
45	Cflags                    []string
46	Apex_available            []string
47	Min_sdk_version           *string
48}
49
50type javaProperties struct {
51	Name            *string
52	Owner           *string
53	Defaults        []string
54	Installable     *bool
55	Sdk_version     *string
56	Srcs            []string
57	Libs            []string
58	Static_libs     []string
59	Apex_available  []string
60	Min_sdk_version *string
61}
62
63type fuzzConfig struct {
64	Fuzz_on_haiku_device *bool
65}
66
67type fuzzProperties struct {
68	Data        []string
69	Fuzz_config *fuzzConfig
70}
71