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

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: fix deps Created 5 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') | 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 6559a39f74665a38e9435990f990f5d3548bd668..6c12e5ef0d494be345646f620d4e3234c9264167 100644
--- a/chrome/android/BUILD.gn
+++ b/chrome/android/BUILD.gn
@@ -407,6 +407,10 @@ android_apk("chrome_shell_apk") {
#}],
#],
#},
+ if (!is_debug) {
+ proguard_enabled = true
+ proguard_configs = [ "shell/java/proguard.flags" ]
+ }
}
chrome_sync_shell_manifest =
@@ -492,6 +496,9 @@ android_library("chrome_shell_test_java") {
# GYP: //chrome/chrome_tests.gypi:chrome_shell_test_apk
instrumentation_test_apk("chrome_shell_test_apk") {
+ if (!is_debug) {
+ proguard_enabled = true
+ }
apk_under_test = ":chrome_shell_apk"
deps = [
":chrome_javatests",
« no previous file with comments | « build/config/android/rules.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698