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 1540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1551 "//testing/android/native_test/java/src/org/chromium/native_test/ChromeNat
iveTestInstrumentationTestRunner.java", | 1551 "//testing/android/native_test/java/src/org/chromium/native_test/ChromeNat
iveTestInstrumentationTestRunner.java", |
1552 ] | 1552 ] |
1553 android_manifest = "//testing/android/native_test/java/AndroidManifest.xml" | 1553 android_manifest = "//testing/android/native_test/java/AndroidManifest.xml" |
1554 native_libs = [ unittests_binary ] | 1554 native_libs = [ unittests_binary ] |
1555 if (defined(invoker.asset_location)) { | 1555 if (defined(invoker.asset_location)) { |
1556 asset_location = invoker.asset_location | 1556 asset_location = invoker.asset_location |
1557 } | 1557 } |
1558 deps = [ | 1558 deps = [ |
1559 "//base:base_java", | 1559 "//base:base_java", |
1560 "//build/android/pylib/remote/device/dummy:remote_device_dummy_apk", | 1560 "//build/android/pylib/remote/device/dummy:remote_device_dummy_apk", |
| 1561 "//testing/android/appurify_support:appurify_support_java", |
1561 ] | 1562 ] |
1562 if (defined(invoker.deps)) { | 1563 if (defined(invoker.deps)) { |
1563 deps += invoker.deps | 1564 deps += invoker.deps |
1564 } | 1565 } |
1565 datadeps = [ | 1566 datadeps = [ |
1566 "//tools/android/forwarder2", | 1567 "//tools/android/forwarder2", |
1567 "//tools/android/md5sum", | 1568 "//tools/android/md5sum", |
1568 ] | 1569 ] |
1569 if (defined(invoker.datadeps)) { | 1570 if (defined(invoker.datadeps)) { |
1570 datadeps += invoker.datadeps | 1571 datadeps += invoker.datadeps |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1794 template("uiautomator_test") { | 1795 template("uiautomator_test") { |
1795 set_sources_assignment_filter([]) | 1796 set_sources_assignment_filter([]) |
1796 if (defined(invoker.testonly)) { | 1797 if (defined(invoker.testonly)) { |
1797 testonly = invoker.testonly | 1798 testonly = invoker.testonly |
1798 } | 1799 } |
1799 assert(target_name != "") | 1800 assert(target_name != "") |
1800 assert(invoker.deps != [] || true) | 1801 assert(invoker.deps != [] || true) |
1801 group(target_name) { | 1802 group(target_name) { |
1802 } | 1803 } |
1803 } | 1804 } |
OLD | NEW |