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

Unified Diff: tools/dartium/deploy_aar.py

Issue 555193002: Fix src_path now that deploy_aar has moved directories. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dartium/deploy_aar.py
diff --git a/tools/dartium/deploy_aar.py b/tools/dartium/deploy_aar.py
index d2841f452dd85523d01f28b80e88ff9fb430ca02..a4ecec3de771295cd7bb19705e62e55c5ceb5745 100755
--- a/tools/dartium/deploy_aar.py
+++ b/tools/dartium/deploy_aar.py
@@ -17,7 +17,8 @@ import utils
RESOURCE_AAR_PATTERN = 'content_shell_apk/resource_aar/*.aar'
CONTENT_SHELL_APK_AAR = 'content_shell_apk/content_shell_apk.aar'
-SRC_PATH = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+SRC_PATH = os.path.join(os.path.dirname(os.path.abspath(__file__)), "..", "..", "..")
blois 2014/09/09 18:18:50 line length
+
DART_DIR = os.path.join(SRC_PATH, 'dart')
CHROME_VERSION_PATH = os.path.join(SRC_PATH, 'chrome', 'VERSION')
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698