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

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

Issue 11366068: Take screenshots using /system/bin/screencap instead of monkeyrunner. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed bulach's comments Created 8 years, 1 month 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/android_commands.py ('k') | build/android/pylib/run_java_tests.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 27 matching lines...) Expand all
38 TEST_SERVER_PORT_LOCKFILE = '/tmp/test_server_port.lock' 38 TEST_SERVER_PORT_LOCKFILE = '/tmp/test_server_port.lock'
39 39
40 TEST_EXECUTABLE_DIR = '/data/local/tmp' 40 TEST_EXECUTABLE_DIR = '/data/local/tmp'
41 # Directories for common java libraries for SDK build. 41 # Directories for common java libraries for SDK build.
42 # These constants are defined in build/android/ant/common.xml 42 # These constants are defined in build/android/ant/common.xml
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
49 # Directory on host where screensohts are saved.
50 SCREENSHOTS_DIR = os.path.join(CHROME_DIR, 'out_screenshots')
OLDNEW
« no previous file with comments | « build/android/pylib/android_commands.py ('k') | build/android/pylib/run_java_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698