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

Unified Diff: build/android/gyp/get_device_configuration.py

Issue 1415413005: Revert of [Android] Add a configurable environment for devil/. (RELAND) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « build/android/gyp/create_device_library_links.py ('k') | build/android/gyp/push_libraries.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gyp/get_device_configuration.py
diff --git a/build/android/gyp/get_device_configuration.py b/build/android/gyp/get_device_configuration.py
index 780f8fffe6e88f2a3a41825248d691a675a5e48e..390eb2ffcb855817a8a8fe91a40f4f22f31a1c4f 100755
--- a/build/android/gyp/get_device_configuration.py
+++ b/build/android/gyp/get_device_configuration.py
@@ -11,28 +11,17 @@
"""
import optparse
-import os
import sys
+from util import build_utils
from util import build_device
-from util import build_utils
-
-BUILD_ANDROID_DIR = os.path.abspath(
- os.path.join(os.path.dirname(__file__), '..'))
-sys.path.apend(BUILD_ANDROID_DIR)
-
-import devil_chromium
def main(argv):
parser = optparse.OptionParser()
parser.add_option('--stamp', action='store')
parser.add_option('--output', action='store')
- parser.add_option('--output-directory', action='store')
options, _ = parser.parse_args(argv)
-
- devil_chromium.Initialize(
- output_directory=os.path.abspath(options.output_directory))
devices = build_device.GetAttachedDevices()
« no previous file with comments | « build/android/gyp/create_device_library_links.py ('k') | build/android/gyp/push_libraries.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698