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

Side by Side 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 unified diff | Download patch
« sky/tools/android_library_cacher.py ('K') | « sky/tools/skydb ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import os 5 import os
6 6
7 # FIXME: All callers should use mopy/paths.py instead! 7 # FIXME: All callers should use mopy/paths.py instead!
8 class Paths(object): 8 class Paths(object):
9 def __init__(self, build_directory): 9 def __init__(self, build_directory):
10 self.src_root = os.path.abspath(os.path.join(__file__, 10 self.src_root = os.path.abspath(os.path.join(__file__,
11 os.pardir, os.pardir, os.pardir, os.pardir)) 11 os.pardir, os.pardir, os.pardir, os.pardir))
12 self.sky_root = os.path.join(self.src_root, 'sky') 12 self.sky_root = os.path.join(self.src_root, 'sky')
13 self.gen_root = os.path.join(self.src_root, build_directory, 'gen') 13 self.build_dir = os.path.join(self.src_root, build_directory)
14 self.gen_root = os.path.join(self.build_dir, 'gen')
14 self.sky_tools_directory = os.path.join(self.src_root, 'sky', 'tools') 15 self.sky_tools_directory = os.path.join(self.src_root, 'sky', 'tools')
15 self.mojo_shell_path = os.path.join(self.src_root, build_directory, 'moj o_shell') 16 self.mojo_shell_path = os.path.join(self.src_root, build_directory, 'moj o_shell')
OLDNEW
« 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