diff options
| author | 2019-01-03 22:22:26 +0000 | |
|---|---|---|
| committer | 2019-01-03 22:22:26 +0000 | |
| commit | dddedf2e8c20ddd96a6c6fa251f455e57e60b5a6 (patch) | |
| tree | 0de14166ff16d5fe82aed067d2d1cb9b6f9577a6 /java/dexpreopt.go | |
| parent | d26357ebbd6e4df8f62f5dc6c91c0eaa71a44222 (diff) | |
| parent | a2c16c1aa0ed81f02ba8ebd8b827fd3c607f5020 (diff) | |
Merge "manifest_fixer: rename to --prefer-code-integrity"
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 ae8d36954..de9c5f3eb 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, |