aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Yun <justinyun@google.com>2017-07-26 14:22:10 +0900
committerJustin Yun <justinyun@google.com>2017-07-28 10:49:12 +0900
commitdd4fd116a28da83085db5f7568fbd0008e35797b (patch)
treea6b3e71b8d2bc8f888fe6b9d85ddb3b9c432ec0d
parent2c44fdf8a2a0434b71cbd9a37e44b20766e6a559 (diff)
downloadbuild_soong-dd4fd116a28da83085db5f7568fbd0008e35797b.tar.gz
build_soong-dd4fd116a28da83085db5f7568fbd0008e35797b.tar.bz2
build_soong-dd4fd116a28da83085db5f7568fbd0008e35797b.zip
Allow 'vndk' tag in cc_defaults
'vndk' tag must be parsed in cc_defaults as well. Bug: 64093420 Test: build with a module that has 'vndk' tag in cc_defaults. Change-Id: I21a5a831dbf8cae00be98c00f4bb98504da53c8d Merged-In: I21a5a831dbf8cae00be98c00f4bb98504da53c8d (cherry picked from commit 4b2382f78e328a0ba2f8c8cdf4fe2d35db123229)
-rw-r--r--cc/cc.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/cc/cc.go b/cc/cc.go
index 3824a3be..ae482504 100644
--- a/cc/cc.go
+++ b/cc/cc.go
@@ -1172,6 +1172,7 @@ func DefaultsFactory(props ...interface{}) android.Module {
&TidyProperties{},
&CoverageProperties{},
&SAbiProperties{},
+ &VndkProperties{},
)
android.InitDefaultsModule(module)