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

Unified Diff: devil/devil/android/tools/flash_device.py

Issue 2923443002: [devil] Add system app replacement wrapper script. (Closed)
Patch Set: docstrings for device_temp_file Created 3 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
« no previous file with comments | « devil/devil/android/device_temp_file.py ('k') | devil/devil/android/tools/keyboard.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: devil/devil/android/tools/flash_device.py
diff --git a/devil/devil/android/tools/flash_device.py b/devil/devil/android/tools/flash_device.py
index d13c1df72c15cf15034adc1029840b5b244a641f..23a273af088b486eec24bb75d47472831cfea099 100755
--- a/devil/devil/android/tools/flash_device.py
+++ b/devil/devil/android/tools/flash_device.py
@@ -24,13 +24,11 @@ logger = logging.getLogger(__name__)
def main():
parser = argparse.ArgumentParser()
parser.add_argument('build_path', help='Path to android build.')
- parser.add_argument('-d', '--device', dest='devices', action='append',
- help='Device(s) to flash.')
parser.add_argument('-v', '--verbose', default=0, action='count',
help='Verbose level (multiple times for more)')
parser.add_argument('-w', '--wipe', action='store_true',
help='If set, wipes user data')
- parser.add_argument('--blacklist-file', help='Device blacklist file.')
+ script_common.AddDeviceArguments(parser)
args = parser.parse_args()
run_tests_helper.SetLogLevel(args.verbose)
« no previous file with comments | « devil/devil/android/device_temp_file.py ('k') | devil/devil/android/tools/keyboard.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698