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

Unified Diff: remoting/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
Index: remoting/BUILD.gn
diff --git a/remoting/BUILD.gn b/remoting/BUILD.gn
index 010ac717e4511c738839a62935f7d637363c2ff8..fdf4cbc7ee3caa7510657e639bafc2561f7ccacf 100644
--- a/remoting/BUILD.gn
+++ b/remoting/BUILD.gn
@@ -49,10 +49,10 @@ group("remoting_all") {
}
if (is_android) {
- deps += [
- "//remoting/android:remoting_apk",
- "//remoting/android:remoting_test_apk",
- ]
+ deps += [ "//remoting/android:remoting_apk" ]
+ if (!enable_all_proguard_optimizations) {
+ deps += [ "//remoting/android:remoting_test_apk" ]
+ }
}
if (enable_remoting_host) {

Powered by Google App Engine
This is Rietveld 408576698