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

Unified Diff: build/android/tombstones.py

Issue 1416703003: [Android] Add a configurable environment for devil/. (RELAND 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed Created 5 years, 2 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/tombstones.py
diff --git a/build/android/tombstones.py b/build/android/tombstones.py
index c961d75b46ccfabc49984e3147e6881515ea5813..1dd2739117afc115420a79fa6eed4d65782d286f 100755
--- a/build/android/tombstones.py
+++ b/build/android/tombstones.py
@@ -18,6 +18,8 @@ import subprocess
import sys
import optparse
+import devil_chromium
+
from devil.android import device_blacklist
from devil.android import device_errors
from devil.android import device_utils
@@ -238,6 +240,8 @@ def main():
if options.blacklist_file
else None)
+ devil_chromium.Initialize()
+
if options.device:
devices = [device_utils.DeviceUtils(options.device)]
else:

Powered by Google App Engine
This is Rietveld 408576698