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

Unified Diff: build/android/device_status_check.py

Issue 15839006: Android: removes pylib.constants.CHROME_DIR. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: find_bugs Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/android/pylib/constants.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/device_status_check.py
diff --git a/build/android/device_status_check.py b/build/android/device_status_check.py
index 50fca8511af4b34ad95105a6085d899da89d29ba..e7ab75d97e717f5b37d0034f8b940f975108f3ad 100755
--- a/build/android/device_status_check.py
+++ b/build/android/device_status_check.py
@@ -41,8 +41,8 @@ def DeviceInfo(serial):
'getprop ro.setupwizard.mode') == 'DISABLED'
battery = AdbShellCmd('dumpsys battery')
install_output = GetCmdOutput(
- ['%s/build/android/adb_install_apk.py' % constants.CHROME_DIR, '--apk',
- '%s/build/android/CheckInstallApk-debug.apk' % constants.CHROME_DIR])
+ ['%s/build/android/adb_install_apk.py' % constants.DIR_SOURCE_ROOT, '--apk',
+ '%s/build/android/CheckInstallApk-debug.apk' % constants.DIR_SOURCE_ROOT])
install_speed_found = re.findall('(\d+) KB/s', install_output)
if install_speed_found:
install_speed = int(install_speed_found[0])
« no previous file with comments | « no previous file | build/android/pylib/constants.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698