| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |