diff options
author | Colin Cross <ccross@android.com> | 2019-02-07 13:05:46 -0800 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2019-02-08 02:27:59 +0000 |
commit | 09a65ab6cab35f1cd308b7eaf8ed4a66e3d6ea9e (patch) | |
tree | 8ce68ec3297948a4209cda199bd0fb77066c7674 /java/dexpreopt.go | |
parent | 697412f05830e88b7a17226c2eabf13961946f80 (diff) | |
download | android_build_soong-09a65ab6cab35f1cd308b7eaf8ed4a66e3d6ea9e.tar.gz android_build_soong-09a65ab6cab35f1cd308b7eaf8ed4a66e3d6ea9e.tar.bz2 android_build_soong-09a65ab6cab35f1cd308b7eaf8ed4a66e3d6ea9e.zip |
Remove unused dexpreopt UseEmbeddedDex
dexpreopt doesn't need to know about UseEmbeddedDex, it has
already been taken into account for UncompressedDex.
Test: m checkbuild
Change-Id: I5508aa43bb8bdb06e20cf93bc5171a5e78833983
Diffstat (limited to 'java/dexpreopt.go')
-rw-r--r-- | java/dexpreopt.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/java/dexpreopt.go b/java/dexpreopt.go index 33c46f4f..55662cf4 100644 --- a/java/dexpreopt.go +++ b/java/dexpreopt.go @@ -149,7 +149,6 @@ func (d *dexpreopter) dexpreopt(ctx android.ModuleContext, dexJarFile android.Mo DexLocation: dexLocation, BuildPath: android.PathForModuleOut(ctx, "dexpreopt", ctx.ModuleName()+".jar").String(), DexPath: dexJarFile.String(), - UseEmbeddedDex: false, UncompressedDex: d.uncompressedDex, HasApkLibraries: false, PreoptFlags: nil, |