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

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

Issue 1893063002: 🐛 Make the Android test apks depend on their run_ scripts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert to PS1 Created 4 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 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 50938cd640bd58d059da2177bef10467cfc97daf..42e4f823427e55e90a05b391dd43bee89fc1ee44 100644
--- a/build/config/android/internal_rules.gni
+++ b/build/config/android/internal_rules.gni
@@ -2077,13 +2077,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