Index: build/android/pylib/utils/test_options_parser.py |
diff --git a/build/android/pylib/utils/test_options_parser.py b/build/android/pylib/utils/test_options_parser.py |
index f1177ed1bf94429fae0507e8989ade92182be998..eecfb715b76b409437f310ac80cb60c748cb57eb 100644 |
--- a/build/android/pylib/utils/test_options_parser.py |
+++ b/build/android/pylib/utils/test_options_parser.py |
@@ -11,7 +11,7 @@ import optparse |
import os |
import sys |
-_SDK_OUT_DIR = os.path.join(constants.CHROME_DIR, 'out') |
+_SDK_OUT_DIR = os.path.join(constants.DIR_SOURCE_ROOT, 'out') |
def AddBuildTypeOption(option_parser): |
@@ -49,7 +49,7 @@ def ValidateInstallAPKOption(option_parser, options): |
if not options.apk: |
option_parser.error('--apk is mandatory.') |
if not os.path.exists(options.apk): |
- options.apk = os.path.join(constants.CHROME_DIR, |
+ options.apk = os.path.join(constants.DIR_SOURCE_ROOT, |
'out', options.build_type, |
'apks', options.apk) |