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

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

Issue 1034053002: [Android] Add an out-of-app instrumentation driver APK. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix unittest_apk gn template Created 5 years, 8 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
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 1540 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « build/apk_test.gypi ('k') | chrome/android/BUILD.gn » ('j') | chrome/chrome_tests.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698