diff options
author | Colin Cross <ccross@android.com> | 2017-10-20 17:57:49 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2017-10-20 20:14:47 -0700 |
commit | 535e2cf4e1aa7b942e4662f6073517df0c00d09e (patch) | |
tree | e8d61906594b6fc13af2f6c1dea54f0926ab359a /java/java.go | |
parent | 2ebc47664648985a2f1fd4814ff19122148c6f85 (diff) | |
download | android_build_soong-535e2cf4e1aa7b942e4662f6073517df0c00d09e.tar.gz android_build_soong-535e2cf4e1aa7b942e4662f6073517df0c00d09e.tar.bz2 android_build_soong-535e2cf4e1aa7b942e4662f6073517df0c00d09e.zip |
Support installable prebuilt jars
Some host modules need to be installed. Add an installable property.
Test: m checkbuild
Change-Id: Ifd023213ff66e81aa77ba1741c75837a1dd88d1d
Diffstat (limited to 'java/java.go')
-rw-r--r-- | java/java.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/java/java.go b/java/java.go index 497b2851..fbd7bdd8 100644 --- a/java/java.go +++ b/java/java.go @@ -920,6 +920,8 @@ type ImportProperties struct { Jars []string Sdk_version string + + Installable *bool } type Import struct { |