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

Unified Diff: gclient_utils.py

Issue 538393002: Make gn.py support root directories other than 'src'. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
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 | gn.py » ('j') | gn.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient_utils.py
diff --git a/gclient_utils.py b/gclient_utils.py
index e8d916e78d5d2a8aeba4cbf61bebf7b64ad79084..7cc42a6a3ebcfd19ca16e57bb0cabe5afa27cd52 100644
--- a/gclient_utils.py
+++ b/gclient_utils.py
@@ -681,7 +681,10 @@ def GetBuildtoolsPath():
if os.path.exists(os.path.join(top_dir, 'buildtools')):
return os.path.join(top_dir, 'buildtools')
return None
- return os.path.join(gclient_root, 'src', 'buildtools')
+
+ # Some projects' top directory is not named 'src'.
+ source_dir_name = GetGClientPrimarySolutionName(gclient_root) or 'src'
+ return os.path.join(gclient_root, source_dir_name, 'buildtools')
def GetBuildtoolsPlatformBinaryPath():
@@ -713,6 +716,18 @@ def GetExeSuffix():
return ''
+def GetGClientPrimarySolutionName(gclient_root_dir_path):
+ """Returns the name of the primary solution in the .gclient file specified."""
+ gclient_config_file = os.path.join(gclient_root_dir_path, '.gclient')
+ env = {}
+ execfile(gclient_config_file, env)
+ if (env.has_key('solutions') and
agable 2014/09/05 11:31:53 I would rewrite this clause as: solutions = env.ge
kjellander_chromium 2014/09/05 12:24:31 You're right. Covering the case with zero solution
+ len(env['solutions']) > 0 and
+ env['solutions'][0].has_key('name')):
+ return env['solutions'][0]['name']
+ return None
+
+
def GetGClientRootAndEntries(path=None):
"""Returns the gclient root and the dict of entries."""
config_file = '.gclient_entries'
« no previous file with comments | « no previous file | gn.py » ('j') | gn.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698