Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(788)

Unified Diff: chrome/android/chrome_public_apk_tmpl.gni

Issue 2160693002: Turning obfuscation on (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@annotation
Patch Set: broken Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/config/android/rules.gni ('k') | chrome/android/java/proguard.flags » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/chrome_public_apk_tmpl.gni
diff --git a/chrome/android/chrome_public_apk_tmpl.gni b/chrome/android/chrome_public_apk_tmpl.gni
index 78cd4cb46cd1e7c338f5f9c243f73c6a04f7c4ff..8c664aa49c192c5f455810ec3e3d82ae3e0a3731 100644
--- a/chrome/android/chrome_public_apk_tmpl.gni
+++ b/chrome/android/chrome_public_apk_tmpl.gni
@@ -52,8 +52,11 @@ template("chrome_public_apk_tmpl") {
"//chrome/android/java/proguard.flags",
"//base/android/base_proguard_config.flags",
]
- if (!enable_all_proguard_optimizations) {
- proguard_configs += [ "//testing/android/proguard_for_test.flags" ]
+ if (enable_all_proguard_optimizations) {
+ proguard_configs +=
+ [ "//chrome/android/java/proguard_for_release.flags" ]
+ } else {
+ proguard_configs += [ "//testing/android/proguard_under_test.flags" ]
}
}
« no previous file with comments | « build/config/android/rules.gni ('k') | chrome/android/java/proguard.flags » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698