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

Unified Diff: build/android/pylib/constants.py

Issue 23513022: android: Point EMULATOR_SDK_ROOT to a location inside the repository. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Patch v2 Created 7 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 side-by-side diff with in-line comments
Download patch
Index: build/android/pylib/constants.py
diff --git a/build/android/pylib/constants.py b/build/android/pylib/constants.py
index 15aebaba5e011b88742de9b7f6d436caa922a605..04eafea3d6363676dff396a5c5def18f4eb2e4e0 100644
--- a/build/android/pylib/constants.py
+++ b/build/android/pylib/constants.py
@@ -13,8 +13,8 @@ import sys
DIR_SOURCE_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__),
os.pardir, os.pardir, os.pardir))
ISOLATE_DEPS_DIR = os.path.join(DIR_SOURCE_ROOT, 'isolate_deps_dir')
-EMULATOR_SDK_ROOT = os.path.abspath(os.path.join(DIR_SOURCE_ROOT, os.pardir,
- os.pardir))
+EMULATOR_SDK_ROOT = os.path.abspath(os.path.join(
Peter Beverloo 2013/09/11 13:58:08 This is now equal to the ANDROID_SDK_ROOT constant
+ DIR_SOURCE_ROOT, 'third_party', 'android_tools', 'sdk'))
# TODO(craigdh): Remove these once references have been removed downstream.
CHROME_PACKAGE = 'com.google.android.apps.chrome'

Powered by Google App Engine
This is Rietveld 408576698