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 1548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1559 "//testing/android/native_test/java/src/org/chromium/native_test/ChromeNat
iveTestInstrumentationTestRunner.java", | 1559 "//testing/android/native_test/java/src/org/chromium/native_test/ChromeNat
iveTestInstrumentationTestRunner.java", |
1560 ] | 1560 ] |
1561 android_manifest = "//testing/android/native_test/java/AndroidManifest.xml" | 1561 android_manifest = "//testing/android/native_test/java/AndroidManifest.xml" |
1562 native_libs = [ unittests_binary ] | 1562 native_libs = [ unittests_binary ] |
1563 if (defined(invoker.asset_location)) { | 1563 if (defined(invoker.asset_location)) { |
1564 asset_location = invoker.asset_location | 1564 asset_location = invoker.asset_location |
1565 } | 1565 } |
1566 deps = [ | 1566 deps = [ |
1567 "//base:base_java", | 1567 "//base:base_java", |
1568 "//build/android/pylib/remote/device/dummy:remote_device_dummy_apk", | 1568 "//build/android/pylib/remote/device/dummy:remote_device_dummy_apk", |
1569 "//testing/android/appurify_support:appurify_support_java", | |
1570 ] | 1569 ] |
1571 if (defined(invoker.deps)) { | 1570 if (defined(invoker.deps)) { |
1572 deps += invoker.deps | 1571 deps += invoker.deps |
1573 } | 1572 } |
1574 datadeps = [ | 1573 datadeps = [ |
1575 "//tools/android/forwarder2", | 1574 "//tools/android/forwarder2", |
1576 "//tools/android/md5sum", | 1575 "//tools/android/md5sum", |
1577 ] | 1576 ] |
1578 if (defined(invoker.datadeps)) { | 1577 if (defined(invoker.datadeps)) { |
1579 datadeps += invoker.datadeps | 1578 datadeps += invoker.datadeps |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1803 template("uiautomator_test") { | 1802 template("uiautomator_test") { |
1804 set_sources_assignment_filter([]) | 1803 set_sources_assignment_filter([]) |
1805 if (defined(invoker.testonly)) { | 1804 if (defined(invoker.testonly)) { |
1806 testonly = invoker.testonly | 1805 testonly = invoker.testonly |
1807 } | 1806 } |
1808 assert(target_name != "") | 1807 assert(target_name != "") |
1809 assert(invoker.deps != [] || true) | 1808 assert(invoker.deps != [] || true) |
1810 group(target_name) { | 1809 group(target_name) { |
1811 } | 1810 } |
1812 } | 1811 } |
OLD | NEW |