diff options
author | Colin Cross <ccross@android.com> | 2018-10-04 15:21:03 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2018-10-08 15:25:54 -0700 |
commit | bd01e2abee24a1567438f66602bec4309da85bde (patch) | |
tree | 84cbecf203a80c0ccdf2b513d491f5f53da089af /androidmk | |
parent | a4f08813a34418a07aa0ebd8b3e704f3a82081ef (diff) | |
download | build_soong-bd01e2abee24a1567438f66602bec4309da85bde.tar.gz build_soong-bd01e2abee24a1567438f66602bec4309da85bde.tar.bz2 build_soong-bd01e2abee24a1567438f66602bec4309da85bde.zip |
Add support for android_app_certificate modules
Some android_app modules need certificates located outside their
directory. Instead of requiring paths from the root of the tree,
add an android_app_certificate module that exports the certificate
files.
Test: m checkbuild
Change-Id: Icbf3898894f3eb857e2d907e3e58dd072c6fabe9
Diffstat (limited to 'androidmk')
-rw-r--r-- | androidmk/cmd/androidmk/android.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/androidmk/cmd/androidmk/android.go b/androidmk/cmd/androidmk/android.go index 0cb6dd68..10e5b0a2 100644 --- a/androidmk/cmd/androidmk/android.go +++ b/androidmk/cmd/androidmk/android.go @@ -155,6 +155,7 @@ func init() { // java_library_static to android_library. "LOCAL_SHARED_ANDROID_LIBRARIES": "android_libs", "LOCAL_STATIC_ANDROID_LIBRARIES": "android_static_libs", + "LOCAL_ADDITIONAL_CERTIFICATES": "additional_certificates", }) addStandardProperties(bpparser.BoolType, |