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

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

Issue 1770943003: [Android] Remove chromium version of devil. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 9 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/devil/android/tools/flash_device.py
diff --git a/build/android/devil/android/tools/flash_device.py b/build/android/devil/android/tools/flash_device.py
deleted file mode 100755
index 75dce2bc91de84129d712648338cb8976e081a1b..0000000000000000000000000000000000000000
--- a/build/android/devil/android/tools/flash_device.py
+++ /dev/null
@@ -1,85 +0,0 @@
-#!/usr/bin/env python
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import argparse
-import logging
-import os
-import sys
-
-if __name__ == '__main__':
- sys.path.append(os.path.abspath(os.path.join(
- os.path.dirname(__file__), os.pardir, os.pardir, os.pardir)))
-from devil.android import device_blacklist
-from devil.android import device_errors
-from devil.android import device_utils
-from devil.android import fastboot_utils
-from devil.android.sdk import adb_wrapper
-from devil.constants import exit_codes
-from devil.utils import run_tests_helper
-
-
-def GetDeviceList(device=None):
- """Returns a list of devices.
-
- If device is passed to it, returns only that device.
- """
- available_devices = [device_utils.DeviceUtils(d)
- for d in adb_wrapper.AdbWrapper.GetDevices()]
- if not available_devices:
- raise device_errors.NoDevicesError
- if not device:
- return available_devices
- for d in available_devices:
- if str(d) == device:
- return [d]
- raise device_errors.NoDevicesError
-
-
-def main():
- parser = argparse.ArgumentParser()
- parser.add_argument('build_path', help='Path to android build.')
- parser.add_argument('-d', '--device', help='Device 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.')
- args = parser.parse_args()
- run_tests_helper.SetLogLevel(args.verbose)
-
- if args.blacklist_file:
- blacklist = device_blacklist.Blacklist(args.blacklist_file).Read()
- if blacklist:
- logging.critical('Device(s) in blacklist, not flashing devices:')
- for key in blacklist:
- logging.critical(' %s', key)
- return exit_codes.INFRA
-
- flashed_devices = []
- failed_devices = []
-
- def flash(device):
- fastboot = fastboot_utils.FastbootUtils(device)
- try:
- fastboot.FlashDevice(args.build_path, wipe=args.wipe)
- flashed_devices.append(device)
- except Exception: # pylint: disable=broad-except
- logging.exception('Device %s failed to flash.', str(device))
- failed_devices.append(device)
-
- devices = GetDeviceList(device=args.device)
- device_utils.DeviceUtils.parallel(devices).pMap(flash)
-
- if flashed_devices:
- logging.info('The following devices were flashed:')
- logging.info(' %s', ' '.join(str(d) for d in flashed_devices))
- if failed_devices:
- logging.critical('The following devices failed to flash:')
- logging.critical(' %s', ' '.join(str(d) for d in failed_devices))
- return exit_codes.INFRA
- return 0
-
-if __name__ == '__main__':
- sys.exit(main())
« no previous file with comments | « build/android/devil/android/tools/adb_run_shell_cmd.py ('k') | build/android/devil/android/tools/screenshot.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698