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

Unified Diff: chrome/android/chrome_public_apk_tmpl.gni

Issue 2150533005: Annotated functions/classes more cleanly kept (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor touchups 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
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 765438a6bc4649eb37c14607edab08b8af6a879d..90a71bc7c8c0d4ca65b3999d231408de6f7b1707 100644
--- a/chrome/android/chrome_public_apk_tmpl.gni
+++ b/chrome/android/chrome_public_apk_tmpl.gni
@@ -48,8 +48,10 @@ template("chrome_public_apk_tmpl") {
_prev_proguard_configs = proguard_configs
}
proguard_configs = []
- proguard_configs =
- [ "//chrome/android/java/proguard.flags" ] + _prev_proguard_configs
+ proguard_configs = _prev_proguard_configs + [
+ "//chrome/android/java/proguard.flags",
+ "//base/base_proguard_config.flags",
+ ]
if (!enable_all_proguard_optimizations) {
proguard_configs += [ "//testing/android/proguard_for_test.flags" ]
}

Powered by Google App Engine
This is Rietveld 408576698