aboutsummaryrefslogtreecommitdiff
path: root/build/properties.go
diff options
context:
space:
mode:
authorJeongik Cha <jeongik@google.com>2020-02-11 07:26:06 +0900
committerJeongik Cha <jeongik@google.com>2020-02-12 11:15:37 +0900
commit63dbe5562e9dbe849fc01436bb8d4c5b13c300b5 (patch)
tree6ca8db9f60e824cbbe6f2cc12221209a6118801d /build/properties.go
parent6d02280c6bc1b17a1d5d51f33eceae2bf9d872b5 (diff)
downloadaidl-63dbe5562e9dbe849fc01436bb8d4c5b13c300b5.tar.gz
Support 'apex_available' field in AIDL
Bug: 149226274 Test: set 'apex_available' field and remove the module from whitelist, and then check if build succeedes. Change-Id: Id7df6d29576468497193c770c0e96f603a0f3eda
Diffstat (limited to 'build/properties.go')
-rw-r--r--build/properties.go18
1 files changed, 10 insertions, 8 deletions
diff --git a/build/properties.go b/build/properties.go
index 62c6a1aa..ab254aa0 100644
--- a/build/properties.go
+++ b/build/properties.go
@@ -44,17 +44,19 @@ type ccProperties struct {
Cpp_std *string
Cflags []string
Stem *string
+ Apex_available []string
}
type javaProperties struct {
- Name *string
- Owner *string
- Defaults []string
- Installable *bool
- Sdk_version *string
- Platform_apis *bool
- Srcs []string
- Static_libs []string
+ Name *string
+ Owner *string
+ Defaults []string
+ Installable *bool
+ Sdk_version *string
+ Platform_apis *bool
+ Srcs []string
+ Static_libs []string
+ Apex_available []string
}
type phonyProperties struct {