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

Side by Side Diff: build/android/pylib/constants.py

Issue 500423004: Refactor/cleanup WebRTC-specific Andorid glue code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 6 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 unified diff | Download patch
« no previous file with comments | « build/android/buildbot/bb_run_bot.py ('k') | build/android/pylib/gtest/gtest_config.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Defines a set of constants shared by test runners and other scripts.""" 5 """Defines a set of constants shared by test runners and other scripts."""
6 # pylint: disable=W0212 6 # pylint: disable=W0212
7 7
8 import collections 8 import collections
9 import logging 9 import logging
10 import os 10 import os
11 import subprocess 11 import subprocess
12 12
13 13
14 DIR_SOURCE_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), 14 DIR_SOURCE_ROOT = os.environ.get('CHECKOUT_SOURCE_ROOT',
15 os.pardir, os.pardir, os.pardir)) 15 os.path.abspath(os.path.join(os.path.dirname(__file__),
16 os.pardir, os.pardir, os.pardir)))
16 ISOLATE_DEPS_DIR = os.path.join(DIR_SOURCE_ROOT, 'isolate_deps_dir') 17 ISOLATE_DEPS_DIR = os.path.join(DIR_SOURCE_ROOT, 'isolate_deps_dir')
17 18
18 CHROME_SHELL_HOST_DRIVEN_DIR = os.path.join( 19 CHROME_SHELL_HOST_DRIVEN_DIR = os.path.join(
19 DIR_SOURCE_ROOT, 'chrome', 'android') 20 DIR_SOURCE_ROOT, 'chrome', 'android')
20 21
21 22
22 PackageInfo = collections.namedtuple('PackageInfo', 23 PackageInfo = collections.namedtuple('PackageInfo',
23 ['package', 'activity', 'cmdline_file', 'devtools_socket', 24 ['package', 'activity', 'cmdline_file', 'devtools_socket',
24 'test_package']) 25 'test_package'])
25 26
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 subprocess.call(['adb', 'version'], stdout=devnull, stderr=devnull) 205 subprocess.call(['adb', 'version'], stdout=devnull, stderr=devnull)
205 return 'adb' 206 return 'adb'
206 except OSError: 207 except OSError:
207 logging.debug('No adb found in $PATH, fallback to checked in binary.') 208 logging.debug('No adb found in $PATH, fallback to checked in binary.')
208 return os.path.join(ANDROID_SDK_ROOT, 'platform-tools', 'adb') 209 return os.path.join(ANDROID_SDK_ROOT, 'platform-tools', 'adb')
209 210
210 211
211 # Exit codes 212 # Exit codes
212 ERROR_EXIT_CODE = 1 213 ERROR_EXIT_CODE = 1
213 WARNING_EXIT_CODE = 88 214 WARNING_EXIT_CODE = 88
OLDNEW
« no previous file with comments | « build/android/buildbot/bb_run_bot.py ('k') | build/android/pylib/gtest/gtest_config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698