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

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

Issue 1904823003: Generate Android .isolate files used for test()s (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert to PS2 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 | « build/android/pylib/utils/isolator.py ('k') | cc/BUILD.gn » ('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 61e5f97326d19f0c28474e7c298029b91dfd3db8..17c976f9677400b0aeb04fd61af3bf6bd5c1ecdb 100644
--- a/build/config/android/internal_rules.gni
+++ b/build/config/android/internal_rules.gni
@@ -2095,6 +2095,7 @@ template("test_runner_script") {
depfile = "$target_gen_dir/$target_name.d"
data_deps += [ "//build/android:test_runner_py" ]
+ data = []
test_runner_args = [
_test_type,
@@ -2179,6 +2180,7 @@ template("test_runner_script") {
}
}
if (defined(invoker.isolate_file)) {
+ data += [ invoker.isolate_file ]
test_runner_args += [
"--isolate-file-path",
rebase_path(invoker.isolate_file, root_build_dir),
@@ -2209,9 +2211,7 @@ template("test_runner_script") {
depfile,
generated_script,
]
- data = [
- generated_script,
- ]
+ data += [ generated_script ]
args = [
"--depfile",
« no previous file with comments | « build/android/pylib/utils/isolator.py ('k') | cc/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698