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

Unified Diff: build/android/test_runner.gypi

Issue 1874393002: 🏆 Allow Android test wrapper scripts to specify their timeouts in GN/GYP (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | build/config/android/internal_rules.gni » ('j') | net/net.gyp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/test_runner.gypi
diff --git a/build/android/test_runner.gypi b/build/android/test_runner.gypi
index 50e3ffa10d0ef5e0f1e39ce0cd7e505fece9b66f..5127e2a54a70fef6293166971984c24121eb76a5 100644
--- a/build/android/test_runner.gypi
+++ b/build/android/test_runner.gypi
@@ -43,6 +43,7 @@
'variables': {
'additional_apks%': [],
'isolate_file%': '',
+ 'shard_timeout%': '',
'test_runner_path%': '',
},
'test_runner_args': ['--output-directory', '<(PRODUCT_DIR)'],
@@ -75,6 +76,9 @@
['isolate_file != ""', {
'test_runner_args': ['--isolate-file-path', '<(isolate_file)']
}],
+ ['shard_timeout != ""', {
+ 'test_runner_args': ['--shard-timeout', '<(shard_timeout)']
+ }],
['test_runner_path != ""', {
'test_runner_args': ['--test-runner-path', '<(test_runner_path)']
}],
« no previous file with comments | « no previous file | build/config/android/internal_rules.gni » ('j') | net/net.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698