diff options
author | Colin Cross <ccross@android.com> | 2019-04-26 10:52:32 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2019-04-26 10:52:32 -0700 |
commit | de4e4e6a6d53d52725767a9bde3509cfaeac5e73 (patch) | |
tree | e23acfa2b16d3159a4748526789634dcf81de603 /java/dexpreopt.go | |
parent | aa1c6f1f5a3c5e2cf9e0fcda4f59a9911d9ede18 (diff) | |
download | build_soong-de4e4e6a6d53d52725767a9bde3509cfaeac5e73.tar.gz build_soong-de4e4e6a6d53d52725767a9bde3509cfaeac5e73.tar.bz2 build_soong-de4e4e6a6d53d52725767a9bde3509cfaeac5e73.zip |
Tag dex_preopt.profile as a path
Tag dex_preopt.profile with `android:"path"` so that it can be used
with a filegroup.
Test: m checkbuild
Change-Id: I5d6bbfcfcf0a1a22c9478ad57d0c55fb9b9efadd
Diffstat (limited to 'java/dexpreopt.go')
-rw-r--r-- | java/dexpreopt.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/dexpreopt.go b/java/dexpreopt.go index 9141f9ef..b502d07c 100644 --- a/java/dexpreopt.go +++ b/java/dexpreopt.go @@ -51,7 +51,7 @@ type DexpreoptProperties struct { // If set, provides the path to profile relative to the Android.bp file. If not set, // defaults to searching for a file that matches the name of this module in the default // profile location set by PRODUCT_DEX_PREOPT_PROFILE_DIR, or empty if not found. - Profile *string + Profile *string `android:"path"` } } |