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

Unified Diff: build/config/android/internal_rules.gni

Issue 1968773002: [Merge to 51] Make the Android test apks depend on their run_ scripts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2704
Patch Set: Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | testing/test.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/android/internal_rules.gni
diff --git a/build/config/android/internal_rules.gni b/build/config/android/internal_rules.gni
index 140bd4854f95e2a6af309beb7354259f139a070a..4fc06f2604e53139c84cc31bb618a7eebdba32f9 100644
--- a/build/config/android/internal_rules.gni
+++ b/build/config/android/internal_rules.gni
@@ -2062,13 +2062,18 @@ template("test_runner_script") {
defined(invoker.incremental_install) && invoker.incremental_install
action(target_name) {
+ data_deps = []
+ deps = []
+ forward_variables_from(invoker,
+ [
+ "data_deps",
+ "deps",
+ ])
+
script = "//build/android/gyp/create_test_runner_script.py"
depfile = "$target_gen_dir/$target_name.d"
- deps = []
- datadeps = [
- "//build/android:test_runner_py",
- ]
+ data_deps += [ "//build/android:test_runner_py" ]
test_runner_args = [
_test_type,
« no previous file with comments | « no previous file | testing/test.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698