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

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

Issue 19220004: [Android] Move modules_unittest to isolate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed all comments Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « build/android/pylib/browsertests/dispatch.py ('k') | build/android/pylib/gtest/dispatch.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 6
7 import os 7 import os
8 import subprocess 8 import subprocess
9 import sys 9 import sys
10 10
11 11
12 DIR_SOURCE_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), 12 DIR_SOURCE_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__),
13 os.pardir, os.pardir, os.pardir)) 13 os.pardir, os.pardir, os.pardir))
14 ISOLATE_DEPS_DIR = os.path.join(DIR_SOURCE_ROOT, 'isolate_deps_dir')
14 EMULATOR_SDK_ROOT = os.path.abspath(os.path.join(DIR_SOURCE_ROOT, os.pardir, 15 EMULATOR_SDK_ROOT = os.path.abspath(os.path.join(DIR_SOURCE_ROOT, os.pardir,
15 os.pardir)) 16 os.pardir))
16 17
17 CHROME_PACKAGE = 'com.google.android.apps.chrome' 18 CHROME_PACKAGE = 'com.google.android.apps.chrome'
18 CHROME_ACTIVITY = 'com.google.android.apps.chrome.Main' 19 CHROME_ACTIVITY = 'com.google.android.apps.chrome.Main'
19 CHROME_DEVTOOLS_SOCKET = 'chrome_devtools_remote' 20 CHROME_DEVTOOLS_SOCKET = 'chrome_devtools_remote'
20 21
21 CHROME_TESTS_PACKAGE = 'com.google.android.apps.chrome.tests' 22 CHROME_TESTS_PACKAGE = 'com.google.android.apps.chrome.tests'
22 23
23 LEGACY_BROWSER_PACKAGE = 'com.google.android.browser' 24 LEGACY_BROWSER_PACKAGE = 'com.google.android.browser'
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 except OSError: 96 except OSError:
96 print >> sys.stderr, 'No adb found in $PATH, fallback to checked in binary.' 97 print >> sys.stderr, 'No adb found in $PATH, fallback to checked in binary.'
97 return os.path.join(ANDROID_SDK_ROOT, 'platform-tools', 'adb') 98 return os.path.join(ANDROID_SDK_ROOT, 'platform-tools', 'adb')
98 99
99 100
100 ADB_PATH = _GetADBPath() 101 ADB_PATH = _GetADBPath()
101 102
102 # Exit codes 103 # Exit codes
103 ERROR_EXIT_CODE = 1 104 ERROR_EXIT_CODE = 1
104 WARNING_EXIT_CODE = 88 105 WARNING_EXIT_CODE = 88
OLDNEW
« no previous file with comments | « build/android/pylib/browsertests/dispatch.py ('k') | build/android/pylib/gtest/dispatch.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698