• 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 aidl
16
17type nameProperties struct {
18	Name *string
19}
20type staticLib struct {
21	Whole_static_libs []string
22}
23
24type sharedLib struct {
25	Shared_libs               []string
26	Export_shared_lib_headers []string
27}
28type ccProperties struct {
29	Name                      *string
30	Owner                     *string
31	Defaults                  []string
32	Vendor_available          *bool
33	Host_supported            *bool
34	Generated_sources         []string
35	Generated_headers         []string
36	Shared                    sharedLib
37	Static                    staticLib
38	Static_libs               []string
39	Shared_libs               []string
40	Export_shared_lib_headers []string
41	Export_generated_headers  []string
42	Sdk_version               *string
43	Stl                       *string
44	Cpp_std                   *string
45	Cflags                    []string
46	Stem                      *string
47	Apex_available            []string
48	Min_sdk_version           *string
49}
50
51type javaProperties struct {
52	Name            *string
53	Owner           *string
54	Defaults        []string
55	Installable     *bool
56	Sdk_version     *string
57	Platform_apis   *bool
58	Srcs            []string
59	Static_libs     []string
60	Apex_available  []string
61	Min_sdk_version *string
62}
63
64type phonyProperties struct {
65	Name     *string
66	Required []string
67}
68