| 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("//third_party/android_platform/config.gni") | 8 import("//third_party/android_platform/config.gni") |
| 9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
| 10 | 10 |
| (...skipping 1838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1849 ] | 1849 ] |
| 1850 android_manifest = "//testing/android/native_test/java/AndroidManifest.xml" | 1850 android_manifest = "//testing/android/native_test/java/AndroidManifest.xml" |
| 1851 native_libs = [ unittests_binary ] | 1851 native_libs = [ unittests_binary ] |
| 1852 if (defined(invoker.asset_location)) { | 1852 if (defined(invoker.asset_location)) { |
| 1853 asset_location = invoker.asset_location | 1853 asset_location = invoker.asset_location |
| 1854 } | 1854 } |
| 1855 deps = [ | 1855 deps = [ |
| 1856 "//base:base_java", | 1856 "//base:base_java", |
| 1857 "//build/android/pylib/remote/device/dummy:remote_device_dummy_apk", | 1857 "//build/android/pylib/remote/device/dummy:remote_device_dummy_apk", |
| 1858 "//testing/android/appurify_support:appurify_support_java", | 1858 "//testing/android/appurify_support:appurify_support_java", |
| 1859 "//testing/android/reporter:reporter_java", | |
| 1860 ] | 1859 ] |
| 1861 if (defined(invoker.deps)) { | 1860 if (defined(invoker.deps)) { |
| 1862 deps += invoker.deps | 1861 deps += invoker.deps |
| 1863 } | 1862 } |
| 1864 data_deps = [ "//tools/android/md5sum" ] | 1863 data_deps = [ "//tools/android/md5sum" ] |
| 1865 if (host_os == "linux") { | 1864 if (host_os == "linux") { |
| 1866 data_deps += [ "//tools/android/forwarder2" ] | 1865 data_deps += [ "//tools/android/forwarder2" ] |
| 1867 } | 1866 } |
| 1868 if (defined(invoker.data_deps)) { | 1867 if (defined(invoker.data_deps)) { |
| 1869 data_deps += invoker.data_deps | 1868 data_deps += invoker.data_deps |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2113 template("uiautomator_test") { | 2112 template("uiautomator_test") { |
| 2114 set_sources_assignment_filter([]) | 2113 set_sources_assignment_filter([]) |
| 2115 if (defined(invoker.testonly)) { | 2114 if (defined(invoker.testonly)) { |
| 2116 testonly = invoker.testonly | 2115 testonly = invoker.testonly |
| 2117 } | 2116 } |
| 2118 assert(target_name != "") | 2117 assert(target_name != "") |
| 2119 assert(invoker.deps != [] || true) | 2118 assert(invoker.deps != [] || true) |
| 2120 group(target_name) { | 2119 group(target_name) { |
| 2121 } | 2120 } |
| 2122 } | 2121 } |
| OLD | NEW |