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 os | 7 import os |
8 | 8 |
9 | 9 |
10 CHROME_PACKAGE = 'com.google.android.apps.chrome' | 10 CHROME_PACKAGE = 'com.google.android.apps.chrome' |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
43 SDK_BUILD_TEST_JAVALIB_DIR = 'test.lib.java' | 43 SDK_BUILD_TEST_JAVALIB_DIR = 'test.lib.java' |
44 SDK_BUILD_APKS_DIR = 'apks' | 44 SDK_BUILD_APKS_DIR = 'apks' |
45 | 45 |
46 # The directory on the device where perf test output gets saved to. | 46 # The directory on the device where perf test output gets saved to. |
47 DEVICE_PERF_OUTPUT_DIR = '/data/data/' + CHROME_PACKAGE + '/files' | 47 DEVICE_PERF_OUTPUT_DIR = '/data/data/' + CHROME_PACKAGE + '/files' |
48 | 48 |
49 SCREENSHOTS_DIR = os.path.join(CHROME_DIR, 'out_screenshots') | 49 SCREENSHOTS_DIR = os.path.join(CHROME_DIR, 'out_screenshots') |
50 | 50 |
51 ANDROID_SDK_ROOT = os.path.join(CHROME_DIR, 'third_party/android_tools/sdk') | 51 ANDROID_SDK_ROOT = os.path.join(CHROME_DIR, 'third_party/android_tools/sdk') |
52 ANDROID_NDK_ROOT = os.path.join(CHROME_DIR, 'third_party/android_tools/ndk') | 52 ANDROID_NDK_ROOT = os.path.join(CHROME_DIR, 'third_party/android_tools/ndk') |
53 | |
54 # Do not modify this list without infra-team approval. This list | |
55 # is used for developers to run tests locally and also by android | |
56 # trybots on commit-queue. | |
57 DEFAULT_UNIT_TEST_SUITES = [ | |
frankf
2013/01/09 21:53:02
Please see the bug. I don't really consider these
Isaac (away)
2013/01/09 21:59:58
Yep, agree w/ you. I did this before you replied
| |
58 'base_unittests', | |
59 'cc_unittests', | |
60 'content_unittests', | |
61 'gpu_unittests', | |
62 'ipc_tests', | |
63 'media_unittests', | |
64 'net_unittests', | |
65 'sql_unittests', | |
66 'sync_unit_tests', | |
67 'ui_unittests', | |
68 'unit_tests', | |
69 'webkit_compositor_bindings_unittests', | |
70 'android_webview_unittests', | |
71 ] | |
OLD | NEW |