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

Unified Diff: build/android/test_runner.py

Issue 693943003: Update from https://crrev.com/302630 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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/uiautomator/test_runner.py ('k') | build/common.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/test_runner.py
diff --git a/build/android/test_runner.py b/build/android/test_runner.py
index 2f5058fe564a7a4dacb2864bba77cf20f8c26f71..1baebc1bd69c022f505cf84ea6ee58fc3404f3df 100755
--- a/build/android/test_runner.py
+++ b/build/android/test_runner.py
@@ -98,11 +98,6 @@ def AddDeviceOptions(option_parser):
dest='tool',
help=('Run the test under a tool '
'(use --tool help to list them)'))
- group.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.'))
group.add_option('-d', '--device', dest='test_device',
help=('Target device for the test suite '
'to run on.'))
@@ -308,7 +303,6 @@ def ProcessInstrumentationOptions(options, error_func):
return instrumentation_test_options.InstrumentationOptions(
options.tool,
options.cleanup_test_files,
- options.push_deps,
options.annotations,
options.exclude_annotations,
options.test_filter,
@@ -387,7 +381,6 @@ def ProcessUIAutomatorOptions(options, error_func):
return uiautomator_test_options.UIAutomatorOptions(
options.tool,
options.cleanup_test_files,
- options.push_deps,
options.annotations,
options.exclude_annotations,
options.test_filter,
@@ -591,7 +584,6 @@ def _RunGTests(options, devices):
gtest_options = gtest_test_options.GTestOptions(
options.tool,
options.cleanup_test_files,
- options.push_deps,
options.test_filter,
options.run_disabled,
options.test_arguments,
« no previous file with comments | « build/android/pylib/uiautomator/test_runner.py ('k') | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698