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

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

Issue 10914199: Android: upstream latest changes for build/android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | Annotate | Revision Log
« no previous file with comments | « build/android/pylib/base_test_runner.py ('k') | build/android/pylib/perf_tests_helper.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 8
9 9
10 CHROME_PACKAGE = 'com.google.android.apps.chrome' 10 CHROME_PACKAGE = 'com.google.android.apps.chrome'
(...skipping 18 matching lines...) Expand all
29 29
30 # The net test server is started from 10000. Reserve 20000 ports for the all 30 # The net test server is started from 10000. Reserve 20000 ports for the all
31 # test-server based tests should be enough for allocating different port for 31 # test-server based tests should be enough for allocating different port for
32 # individual test-server based test. 32 # individual test-server based test.
33 TEST_SERVER_PORT_FIRST = 10000 33 TEST_SERVER_PORT_FIRST = 10000
34 TEST_SERVER_PORT_LAST = 30000 34 TEST_SERVER_PORT_LAST = 30000
35 # A file to record next valid port of test server. 35 # A file to record next valid port of test server.
36 TEST_SERVER_PORT_FILE = '/tmp/test_server_port' 36 TEST_SERVER_PORT_FILE = '/tmp/test_server_port'
37 TEST_SERVER_PORT_LOCKFILE = '/tmp/test_server_port.lock' 37 TEST_SERVER_PORT_LOCKFILE = '/tmp/test_server_port.lock'
38 38
39 TEST_DATA_DIR = '/sdcard'
40 TEST_EXECUTABLE_DIR = '/data/local/tmp' 39 TEST_EXECUTABLE_DIR = '/data/local/tmp'
OLDNEW
« no previous file with comments | « build/android/pylib/base_test_runner.py ('k') | build/android/pylib/perf_tests_helper.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698