blob: 0b61b63a430c4b1fd7247955731e9f7a8d79510b [file] [log] [blame]
Steven Moreland81079f92018-07-06 16:15:53 -07001// 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}
Jeongik Chae072e6c2019-02-22 18:36:33 +090020type staticLib struct {
21 Whole_static_libs []string
22}
Steven Moreland81079f92018-07-06 16:15:53 -070023
Jeongik Chae072e6c2019-02-22 18:36:33 +090024type sharedLib struct {
25 Shared_libs []string
26 Export_shared_lib_headers []string
27}
Steven Morelanda6fe4052020-11-03 19:52:05 +000028
29type perTargetProperties struct {
30 Enabled *bool
31}
32
33type targetProperties struct {
34 Darwin perTargetProperties
35}
36
Steven Moreland81079f92018-07-06 16:15:53 -070037type ccProperties struct {
38 Name *string
39 Owner *string
40 Defaults []string
Steven Morelandfeacc762020-09-29 01:35:30 +000041 Double_loadable *bool
Steven Moreland81079f92018-07-06 16:15:53 -070042 Vendor_available *bool
Justin Yunbc121402020-10-29 17:07:33 +090043 Product_available *bool
Steven Morelanddca9d4b2019-09-20 18:42:24 +000044 Host_supported *bool
Steven Moreland81079f92018-07-06 16:15:53 -070045 Generated_sources []string
46 Generated_headers []string
Jeongik Chae072e6c2019-02-22 18:36:33 +090047 Shared sharedLib
48 Static staticLib
Jeongik Cha37e2ad52019-04-18 13:44:26 +090049 Static_libs []string
Steven Moreland81079f92018-07-06 16:15:53 -070050 Shared_libs []string
51 Export_shared_lib_headers []string
52 Export_generated_headers []string
Devin Moore7d5a4542020-04-29 15:37:25 -070053 Header_libs []string
Steven Morelandc26d8142018-09-17 14:25:33 -070054 Sdk_version *string
55 Stl *string
Steven Moreland63492e62018-11-14 14:36:13 -080056 Cpp_std *string
Steven Moreland92b3a852018-12-12 13:08:49 -080057 Cflags []string
Jeongik Cha2aa389a2019-10-18 15:57:38 +090058 Stem *string
Jeongik Cha63dbe552020-02-11 07:26:06 +090059 Apex_available []string
Jooyung Han00c33022020-04-16 18:49:11 +090060 Min_sdk_version *string
Jooyung Han1150b2a2020-08-18 15:43:56 +090061 UseApexNameMacro bool
Steven Morelanda6fe4052020-11-03 19:52:05 +000062 Target targetProperties
Jiyong Parkdd57f1a2020-11-16 20:19:55 +090063 Tidy *bool
64 Tidy_flags []string
65 Tidy_checks_as_errors []string
Steven Moreland81079f92018-07-06 16:15:53 -070066}
67
68type javaProperties struct {
Jooyung Han00c33022020-04-16 18:49:11 +090069 Name *string
70 Owner *string
71 Defaults []string
72 Installable *bool
73 Sdk_version *string
74 Platform_apis *bool
75 Srcs []string
76 Static_libs []string
77 Apex_available []string
78 Min_sdk_version *string
Steven Moreland81079f92018-07-06 16:15:53 -070079}
80
Andrei Homescub62afd92020-05-11 19:24:59 -070081type rustProperties struct {
82 Name *string
83 Crate_name string
84 Owner *string
85 Defaults []string
86 Host_supported *bool
87 Srcs []string
88 Rustlibs []string
89 Stem *string
Steven Morelanda6fe4052020-11-03 19:52:05 +000090 Target targetProperties
Andrei Homescub62afd92020-05-11 19:24:59 -070091}
92
Steven Moreland81079f92018-07-06 16:15:53 -070093type phonyProperties struct {
94 Name *string
95 Required []string
96}