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

Unified Diff: blimp/client/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: blimp/client/BUILD.gn
diff --git a/blimp/client/BUILD.gn b/blimp/client/BUILD.gn
index 1c5725bb1b0e7bae92dee73444bc0b2e8e9d8213..61ee06c3b4d9b5caa503cc1e5928141bdae3f5e6 100644
--- a/blimp/client/BUILD.gn
+++ b/blimp/client/BUILD.gn
@@ -533,13 +533,15 @@ if (is_android) {
shared_libraries = [ ":blimp_client_android" ]
}
- instrumentation_test_apk("blimp_test_apk") {
- apk_name = "BlimpTest"
- apk_under_test = ":blimp_apk"
- android_manifest = blimp_test_apk_manifest
- android_manifest_dep = ":blimp_test_apk_manifest"
- deps = [
- ":blimp_test_java",
- ]
+ if (!enable_all_proguard_optimizations) {
+ instrumentation_test_apk("blimp_test_apk") {
+ apk_name = "BlimpTest"
+ apk_under_test = ":blimp_apk"
+ android_manifest = blimp_test_apk_manifest
+ android_manifest_dep = ":blimp_test_apk_manifest"
+ deps = [
+ ":blimp_test_java",
+ ]
+ }
}
}

Powered by Google App Engine
This is Rietveld 408576698