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

Unified Diff: sky/tools/skypy/paths.py

Issue 855663003: Add very basic support for symboled debugging on android (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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
« sky/tools/android_library_cacher.py ('K') | « sky/tools/skydb ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/tools/skypy/paths.py
diff --git a/sky/tools/skypy/paths.py b/sky/tools/skypy/paths.py
index 8a7a6b5dddcbf958510edccc3614ac2c4a7a0ff2..81b7e9939748a4da41b14a6a3c2e106b3589c6fe 100644
--- a/sky/tools/skypy/paths.py
+++ b/sky/tools/skypy/paths.py
@@ -10,6 +10,7 @@ class Paths(object):
self.src_root = os.path.abspath(os.path.join(__file__,
os.pardir, os.pardir, os.pardir, os.pardir))
self.sky_root = os.path.join(self.src_root, 'sky')
- self.gen_root = os.path.join(self.src_root, build_directory, 'gen')
+ self.build_dir = os.path.join(self.src_root, build_directory)
+ self.gen_root = os.path.join(self.build_dir, 'gen')
self.sky_tools_directory = os.path.join(self.src_root, 'sky', 'tools')
self.mojo_shell_path = os.path.join(self.src_root, build_directory, 'mojo_shell')
« sky/tools/android_library_cacher.py ('K') | « sky/tools/skydb ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698