diff options
author | Victor Hsieh <victorhsieh@google.com> | 2019-01-02 14:50:56 -0800 |
---|---|---|
committer | Victor Hsieh <victorhsieh@google.com> | 2019-01-03 09:51:11 -0800 |
commit | a2c16c1aa0ed81f02ba8ebd8b827fd3c607f5020 (patch) | |
tree | 4324d163bb47f54f55fbbcd3b510b73bdf187adf /java/dexpreopt.go | |
parent | 186c771cb4d0ba556ab0051c6d44e502926f614e (diff) | |
download | android_build_soong-a2c16c1aa0ed81f02ba8ebd8b827fd3c607f5020.tar.gz android_build_soong-a2c16c1aa0ed81f02ba8ebd8b827fd3c607f5020.tar.bz2 android_build_soong-a2c16c1aa0ed81f02ba8ebd8b827fd3c607f5020.zip |
manifest_fixer: rename to --prefer-code-integrity
During code review, the name change was suggested.
Test: local CTS passed
Bug: 112037137
Change-Id: I7eb25210afb45c7477b0d606574048a15c9c721d
Diffstat (limited to 'java/dexpreopt.go')
-rw-r--r-- | java/dexpreopt.go | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/java/dexpreopt.go b/java/dexpreopt.go index ae8d3695..de9c5f3e 100644 --- a/java/dexpreopt.go +++ b/java/dexpreopt.go @@ -147,14 +147,14 @@ func (d *dexpreopter) dexpreopt(ctx android.ModuleContext, dexJarFile android.Mo } dexpreoptConfig := dexpreopt.ModuleConfig{ - Name: ctx.ModuleName(), - DexLocation: dexLocation, - BuildPath: android.PathForModuleOut(ctx, "dexpreopt", ctx.ModuleName()+".jar").String(), - DexPath: dexJarFile.String(), - PreferIntegrity: false, - UncompressedDex: uncompressedDex, - HasApkLibraries: false, - PreoptFlags: nil, + Name: ctx.ModuleName(), + DexLocation: dexLocation, + BuildPath: android.PathForModuleOut(ctx, "dexpreopt", ctx.ModuleName()+".jar").String(), + DexPath: dexJarFile.String(), + PreferCodeIntegrity: false, + UncompressedDex: uncompressedDex, + HasApkLibraries: false, + PreoptFlags: nil, ProfileClassListing: profileClassListing.String(), ProfileIsTextListing: profileIsTextListing, |