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

Unified Diff: build/android/screenshot.py

Issue 1314823011: [Android] Don't use a device blacklist if one isn't provided. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 | « build/android/pylib/local/device/local_device_environment.py ('k') | build/android/test_runner.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/screenshot.py
diff --git a/build/android/screenshot.py b/build/android/screenshot.py
index b03979663633df155d0ef72578031133f81f3487..902e06808ce056f72ba3491d1f758d2c032de4c3 100755
--- a/build/android/screenshot.py
+++ b/build/android/screenshot.py
@@ -75,10 +75,9 @@ def main():
if options.verbose:
logging.getLogger().setLevel(logging.DEBUG)
- if options.blacklist_file:
- blacklist = device_blacklist.Blacklist(options.blacklist_file)
- else:
- blacklist = None
+ blacklist = (device_blacklist.Blacklist(options.blacklist_file)
+ if options.blacklist_file
+ else None)
devices = device_utils.DeviceUtils.HealthyDevices(blacklist)
if options.device:
« no previous file with comments | « build/android/pylib/local/device/local_device_environment.py ('k') | build/android/test_runner.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698