OLD | NEW |
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 collections | 7 import collections |
8 import logging | 8 import logging |
9 import os | 9 import os |
10 import subprocess | 10 import subprocess |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 PERF_OUTPUT_DIR = os.path.join(DIR_SOURCE_ROOT, 'out', 'step_results') | 121 PERF_OUTPUT_DIR = os.path.join(DIR_SOURCE_ROOT, 'out', 'step_results') |
122 # The directory on the device where perf test output gets saved to. | 122 # The directory on the device where perf test output gets saved to. |
123 DEVICE_PERF_OUTPUT_DIR = ( | 123 DEVICE_PERF_OUTPUT_DIR = ( |
124 '/data/data/' + PACKAGE_INFO['chrome'].package + '/files') | 124 '/data/data/' + PACKAGE_INFO['chrome'].package + '/files') |
125 | 125 |
126 SCREENSHOTS_DIR = os.path.join(DIR_SOURCE_ROOT, 'out_screenshots') | 126 SCREENSHOTS_DIR = os.path.join(DIR_SOURCE_ROOT, 'out_screenshots') |
127 | 127 |
128 ANDROID_SDK_VERSION = 19 | 128 ANDROID_SDK_VERSION = 19 |
129 ANDROID_SDK_ROOT = os.path.join(DIR_SOURCE_ROOT, | 129 ANDROID_SDK_ROOT = os.path.join(DIR_SOURCE_ROOT, |
130 'third_party/android_tools/sdk') | 130 'third_party/android_tools/sdk') |
| 131 ANDROID_SDK_TOOLS = os.path.join(ANDROID_SDK_ROOT, |
| 132 'build-tools/%d.0.0' % ANDROID_SDK_VERSION) |
131 ANDROID_NDK_ROOT = os.path.join(DIR_SOURCE_ROOT, | 133 ANDROID_NDK_ROOT = os.path.join(DIR_SOURCE_ROOT, |
132 'third_party/android_tools/ndk') | 134 'third_party/android_tools/ndk') |
133 | 135 |
134 EMULATOR_SDK_ROOT = os.environ.get('ANDROID_EMULATOR_SDK_ROOT', | 136 EMULATOR_SDK_ROOT = os.environ.get('ANDROID_EMULATOR_SDK_ROOT', |
135 os.path.join(DIR_SOURCE_ROOT, | 137 os.path.join(DIR_SOURCE_ROOT, |
136 'android_emulator_sdk')) | 138 'android_emulator_sdk')) |
137 | 139 |
138 UPSTREAM_FLAKINESS_SERVER = 'test-results.appspot.com' | 140 UPSTREAM_FLAKINESS_SERVER = 'test-results.appspot.com' |
139 | 141 |
140 | 142 |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 subprocess.call(['adb', 'version'], stdout=devnull, stderr=devnull) | 184 subprocess.call(['adb', 'version'], stdout=devnull, stderr=devnull) |
183 return 'adb' | 185 return 'adb' |
184 except OSError: | 186 except OSError: |
185 logging.debug('No adb found in $PATH, fallback to checked in binary.') | 187 logging.debug('No adb found in $PATH, fallback to checked in binary.') |
186 return os.path.join(ANDROID_SDK_ROOT, 'platform-tools', 'adb') | 188 return os.path.join(ANDROID_SDK_ROOT, 'platform-tools', 'adb') |
187 | 189 |
188 | 190 |
189 # Exit codes | 191 # Exit codes |
190 ERROR_EXIT_CODE = 1 | 192 ERROR_EXIT_CODE = 1 |
191 WARNING_EXIT_CODE = 88 | 193 WARNING_EXIT_CODE = 88 |
OLD | NEW |