Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(230)

Side by Side Diff: build/config/android/rules.gni

Issue 1173363008: [Android] Refactor browser test execution. (RELAND) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/config/android/internal_rules.gni ('k') | components/components_tests.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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",
1859 ] 1860 ]
1860 if (defined(invoker.deps)) { 1861 if (defined(invoker.deps)) {
1861 deps += invoker.deps 1862 deps += invoker.deps
1862 } 1863 }
1863 data_deps = [ "//tools/android/md5sum" ] 1864 data_deps = [ "//tools/android/md5sum" ]
1864 if (host_os == "linux") { 1865 if (host_os == "linux") {
1865 data_deps += [ "//tools/android/forwarder2" ] 1866 data_deps += [ "//tools/android/forwarder2" ]
1866 } 1867 }
1867 if (defined(invoker.data_deps)) { 1868 if (defined(invoker.data_deps)) {
1868 data_deps += invoker.data_deps 1869 data_deps += invoker.data_deps
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
2112 template("uiautomator_test") { 2113 template("uiautomator_test") {
2113 set_sources_assignment_filter([]) 2114 set_sources_assignment_filter([])
2114 if (defined(invoker.testonly)) { 2115 if (defined(invoker.testonly)) {
2115 testonly = invoker.testonly 2116 testonly = invoker.testonly
2116 } 2117 }
2117 assert(target_name != "") 2118 assert(target_name != "")
2118 assert(invoker.deps != [] || true) 2119 assert(invoker.deps != [] || true)
2119 group(target_name) { 2120 group(target_name) {
2120 } 2121 }
2121 } 2122 }
OLDNEW
« no previous file with comments | « build/config/android/internal_rules.gni ('k') | components/components_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698