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

Unified Diff: chrome/android/BUILD.gn

Issue 1133013003: Enable proguard for apks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@javac-no-java
Patch Set: Created 5 years, 7 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
« build/config/android/rules.gni ('K') | « build/config/android/rules.gni ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/BUILD.gn
diff --git a/chrome/android/BUILD.gn b/chrome/android/BUILD.gn
index f87b244930a2998cbe98b2149b40c5a56caa51b7..43a5ac45b2738e9cf50345215fe1458ed19d180b 100644
--- a/chrome/android/BUILD.gn
+++ b/chrome/android/BUILD.gn
@@ -376,6 +376,10 @@ android_apk("chrome_shell_apk") {
#}],
#],
#},
+ if (!is_debug) {
+ proguard_enabled = true
+ proguard_configs = [ "shell/java/proguard.flags" ]
+ }
}
chrome_sync_shell_manifest =
@@ -460,6 +464,9 @@ android_library("chrome_shell_test_java") {
# GYP: //chrome/chrome_tests.gypi:chrome_shell_test_apk
android_apk("chrome_shell_test_apk") {
+ if (!is_debug) {
+ proguard_enabled = true
+ }
testonly = true
apk_under_test = ":chrome_shell_apk"
deps = [
« build/config/android/rules.gni ('K') | « build/config/android/rules.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698