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

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

Issue 12386034: Android: Run content_browsertests on the experimental bot (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Disabling IndexedDBBrowserTest.ConnectionsClosedOnTabClose Created 7 years, 9 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
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 8
9 9
10 CHROME_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__), 10 CHROME_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__),
(...skipping 17 matching lines...) Expand all
28 CHROMIUM_TEST_SHELL_ACTIVITY = ( 28 CHROMIUM_TEST_SHELL_ACTIVITY = (
29 'org.chromium.chrome.testshell.ChromiumTestShellActivity') 29 'org.chromium.chrome.testshell.ChromiumTestShellActivity')
30 CHROMIUM_TEST_SHELL_DEVTOOLS_SOCKET = 'chromium_testshell_devtools_remote' 30 CHROMIUM_TEST_SHELL_DEVTOOLS_SOCKET = 'chromium_testshell_devtools_remote'
31 CHROMIUM_TEST_SHELL_HOST_DRIVEN_DIR = os.path.join( 31 CHROMIUM_TEST_SHELL_HOST_DRIVEN_DIR = os.path.join(
32 CHROME_DIR, 'chrome', 'android') 32 CHROME_DIR, 'chrome', 'android')
33 33
34 GTEST_TEST_PACKAGE_NAME = 'org.chromium.native_test' 34 GTEST_TEST_PACKAGE_NAME = 'org.chromium.native_test'
35 GTEST_TEST_ACTIVITY_NAME = 'org.chromium.native_test.ChromeNativeTestActivity' 35 GTEST_TEST_ACTIVITY_NAME = 'org.chromium.native_test.ChromeNativeTestActivity'
36 GTEST_COMMAND_LINE_FILE = 'chrome-native-tests-command-line' 36 GTEST_COMMAND_LINE_FILE = 'chrome-native-tests-command-line'
37 37
38 BROWSERTEST_SUITE_NAME = 'content_browsertests'
38 BROWSERTEST_TEST_PACKAGE_NAME = 'org.chromium.content_browsertests_apk' 39 BROWSERTEST_TEST_PACKAGE_NAME = 'org.chromium.content_browsertests_apk'
39 BROWSERTEST_TEST_ACTIVITY_NAME = ( 40 BROWSERTEST_TEST_ACTIVITY_NAME = (
40 'org.chromium.content_browsertests_apk.ContentBrowserTestsActivity') 41 'org.chromium.content_browsertests_apk.ContentBrowserTestsActivity')
41 BROWSERTEST_COMMAND_LINE_FILE = 'content-browser-tests-command-line' 42 BROWSERTEST_COMMAND_LINE_FILE = 'content-browser-tests-command-line'
42 43
43 # Ports arrangement for various test servers used in Chrome for Android. 44 # Ports arrangement for various test servers used in Chrome for Android.
44 # Lighttpd server will attempt to use 9000 as default port, if unavailable it 45 # Lighttpd server will attempt to use 9000 as default port, if unavailable it
45 # will find a free port from 8001 - 8999. 46 # will find a free port from 8001 - 8999.
46 LIGHTTPD_DEFAULT_PORT = 9000 47 LIGHTTPD_DEFAULT_PORT = 9000
47 LIGHTTPD_RANDOM_PORT_FIRST = 8001 48 LIGHTTPD_RANDOM_PORT_FIRST = 8001
(...skipping 18 matching lines...) Expand all
66 # The directory on the device where perf test output gets saved to. 67 # The directory on the device where perf test output gets saved to.
67 DEVICE_PERF_OUTPUT_DIR = '/data/data/' + CHROME_PACKAGE + '/files' 68 DEVICE_PERF_OUTPUT_DIR = '/data/data/' + CHROME_PACKAGE + '/files'
68 69
69 SCREENSHOTS_DIR = os.path.join(CHROME_DIR, 'out_screenshots') 70 SCREENSHOTS_DIR = os.path.join(CHROME_DIR, 'out_screenshots')
70 71
71 ANDROID_SDK_VERSION = 17 72 ANDROID_SDK_VERSION = 17
72 ANDROID_SDK_ROOT = os.path.join(CHROME_DIR, 'third_party/android_tools/sdk') 73 ANDROID_SDK_ROOT = os.path.join(CHROME_DIR, 'third_party/android_tools/sdk')
73 ANDROID_NDK_ROOT = os.path.join(CHROME_DIR, 'third_party/android_tools/ndk') 74 ANDROID_NDK_ROOT = os.path.join(CHROME_DIR, 'third_party/android_tools/ndk')
74 75
75 UPSTREAM_FLAKINESS_SERVER = 'test-results.appspot.com' 76 UPSTREAM_FLAKINESS_SERVER = 'test-results.appspot.com'
OLDNEW
« no previous file with comments | « build/android/pylib/browsertests/dispatch.py ('k') | build/android/pylib/gtest/filter/content_browsertests_disabled » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698