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

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

Issue 867073002: [Android] Add a java version of the test server spawner. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: findbugs Created 5 years, 10 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/apk_test.gypi ('k') | chrome/chrome_tests.gypi » ('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("//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
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",
ppi 2015/02/26 15:50:03 Please don't. /build should not depend on /net. Te
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
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 }
OLDNEW
« no previous file with comments | « build/apk_test.gypi ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698