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

Unified Diff: BUILD.gn

Issue 2123753005: Creating new gn arg: enable_all_proguard_optimizations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changing from 2 apks to gn arg which controls optimizations 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 | « no previous file | android_webview/test/BUILD.gn » ('j') | android_webview/tools/system_webview_shell/BUILD.gn » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index 38e5b95047f8ff2c7abfc3c5bb81c927fe24d897..2c80c3de128f445bffbccb27bb28cd08665199d6 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -402,12 +402,16 @@ group("both_gn_and_gyp") {
"//android_webview/tools/system_webview_shell",
"//chrome/android:chrome_junit_tests",
"//chrome/android:chrome_public_apk",
- "//chrome/android:chrome_public_test_apk",
- "//chrome/android:chrome_sync_shell_test_apk",
"//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_apk",
- "//content/shell/android:content_shell_test_apk",
"//third_party/custom_tabs_client:custom_tabs_client_example_apk",
]
+ if (!enable_all_proguard_optimizations) {
+ deps += [
+ "//chrome/android:chrome_public_test_apk",
+ "//chrome/android:chrome_sync_shell_test_apk",
+ "//content/shell/android:content_shell_test_apk",
+ ]
+ }
}
if (target_cpu != "x64") {
« no previous file with comments | « no previous file | android_webview/test/BUILD.gn » ('j') | android_webview/tools/system_webview_shell/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698