| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//base/android/linker/config.gni") | 5 import("//base/android/linker/config.gni") |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/android/internal_rules.gni") | 7 import("//build/config/android/internal_rules.gni") |
| 8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 import("//tools/relocation_packer/config.gni") | 9 import("//tools/relocation_packer/config.gni") |
| 10 | 10 |
| (...skipping 1472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1483 "//testing/android/java/src/org/chromium/native_test/ChromeNativeTestInstr
umentationTestRunner.java", | 1483 "//testing/android/java/src/org/chromium/native_test/ChromeNativeTestInstr
umentationTestRunner.java", |
| 1484 ] | 1484 ] |
| 1485 android_manifest = "//testing/android/java/AndroidManifest.xml" | 1485 android_manifest = "//testing/android/java/AndroidManifest.xml" |
| 1486 native_libs = [ unittests_binary ] | 1486 native_libs = [ unittests_binary ] |
| 1487 if (defined(invoker.asset_location)) { | 1487 if (defined(invoker.asset_location)) { |
| 1488 asset_location = invoker.asset_location | 1488 asset_location = invoker.asset_location |
| 1489 } | 1489 } |
| 1490 deps = [ | 1490 deps = [ |
| 1491 "//base:base_java", | 1491 "//base:base_java", |
| 1492 "//build/android/pylib/remote/device/dummy:remote_device_dummy_apk", | 1492 "//build/android/pylib/remote/device/dummy:remote_device_dummy_apk", |
| 1493 "//net/android:net_java_test_support", |
| 1493 ] | 1494 ] |
| 1494 if (defined(invoker.deps)) { | 1495 if (defined(invoker.deps)) { |
| 1495 deps += invoker.deps | 1496 deps += invoker.deps |
| 1496 } | 1497 } |
| 1497 datadeps = [ | 1498 datadeps = [ |
| 1498 "//tools/android/forwarder2", | 1499 "//tools/android/forwarder2", |
| 1499 "//tools/android/md5sum", | 1500 "//tools/android/md5sum", |
| 1500 ] | 1501 ] |
| 1501 if (defined(invoker.datadeps)) { | 1502 if (defined(invoker.datadeps)) { |
| 1502 datadeps += invoker.datadeps | 1503 datadeps += invoker.datadeps |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1726 template("uiautomator_test") { | 1727 template("uiautomator_test") { |
| 1727 set_sources_assignment_filter([]) | 1728 set_sources_assignment_filter([]) |
| 1728 if (defined(invoker.testonly)) { | 1729 if (defined(invoker.testonly)) { |
| 1729 testonly = invoker.testonly | 1730 testonly = invoker.testonly |
| 1730 } | 1731 } |
| 1731 assert(target_name != "") | 1732 assert(target_name != "") |
| 1732 assert(invoker.deps != [] || true) | 1733 assert(invoker.deps != [] || true) |
| 1733 group(target_name) { | 1734 group(target_name) { |
| 1734 } | 1735 } |
| 1735 } | 1736 } |
| OLD | NEW |