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

Side by Side 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/config.gni") 8 import("//build/config/android/config.gni")
9 import("//build/config/android/rules.gni") 9 import("//build/config/android/rules.gni")
10 } 10 }
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 "//blimp/client/core:core_java", 526 "//blimp/client/core:core_java",
527 "//components/safe_json/android:safe_json_java", 527 "//components/safe_json/android:safe_json_java",
528 "//net/android:net_java", 528 "//net/android:net_java",
529 ] 529 ]
530 apk_name = "Blimp" 530 apk_name = "Blimp"
531 android_manifest = blimp_apk_manifest 531 android_manifest = blimp_apk_manifest
532 android_manifest_dep = ":blimp_apk_manifest" 532 android_manifest_dep = ":blimp_apk_manifest"
533 shared_libraries = [ ":blimp_client_android" ] 533 shared_libraries = [ ":blimp_client_android" ]
534 } 534 }
535 535
536 instrumentation_test_apk("blimp_test_apk") { 536 if (!enable_all_proguard_optimizations) {
537 apk_name = "BlimpTest" 537 instrumentation_test_apk("blimp_test_apk") {
538 apk_under_test = ":blimp_apk" 538 apk_name = "BlimpTest"
539 android_manifest = blimp_test_apk_manifest 539 apk_under_test = ":blimp_apk"
540 android_manifest_dep = ":blimp_test_apk_manifest" 540 android_manifest = blimp_test_apk_manifest
541 deps = [ 541 android_manifest_dep = ":blimp_test_apk_manifest"
542 ":blimp_test_java", 542 deps = [
543 ] 543 ":blimp_test_java",
544 ]
545 }
544 } 546 }
545 } 547 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698