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

Unified Diff: build/android/pylib/utils/test_options_parser.py

Issue 16627004: [Android] Add --skip-deps-push to test scripts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
Index: build/android/pylib/utils/test_options_parser.py
diff --git a/build/android/pylib/utils/test_options_parser.py b/build/android/pylib/utils/test_options_parser.py
index eecfb715b76b409437f310ac80cb60c748cb57eb..16a440bbf82c6614e497229aec1538f394619551 100644
--- a/build/android/pylib/utils/test_options_parser.py
+++ b/build/android/pylib/utils/test_options_parser.py
@@ -89,6 +89,11 @@ def AddTestRunnerOptions(option_parser, default_timeout=60):
dest='flakiness_dashboard_server',
help=('Address of the server that is hosting the '
'Chrome for Android flakiness dashboard.'))
+ option_parser.add_option('--skip-deps-push', dest='push_deps',
+ action='store_false', default=True,
+ help='Do not push dependencies to the device. '
+ 'Use this at own risk for speeding up test '
+ 'execution on local machine.')
AddBuildTypeOption(option_parser)

Powered by Google App Engine
This is Rietveld 408576698