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

Unified Diff: build/scripts/slave/build_directory.py

Issue 31543002: Dynamically pick build directory on the slave side. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: Created 7 years, 2 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: build/scripts/slave/build_directory.py
===================================================================
--- build/scripts/slave/build_directory.py (revision 229728)
+++ build/scripts/slave/build_directory.py (working copy)
@@ -8,6 +8,24 @@
import sys
+def IsFileNewerThanFile(file_a, file_b):
+ """Returns True if file_a's mtime is newer than file_b's."""
+ file_a_stat = 0
+ file_b_stat = 0
+
+ try:
+ file_a_stat = os.path.getmtime(file_a)
+ except os.error:
+ pass
M-A Ruel 2013/10/21 13:12:20 optional: You could put file_a_stat = 0 here, savi
Nico 2013/10/21 14:14:09 Done.
+
+ try:
+ file_b_stat = os.path.getmtime(file_b)
+ except os.error:
+ pass
+
+ return file_a_stat > file_b_stat
+
+
def AreNinjaFilesNewerThanXcodeFiles(src_dir=None):
"""Returns True if the generated ninja files are newer than the generated
xcode files.
@@ -16,53 +34,44 @@
src_dir: The path to the src directory. If None, it's assumed to be
at src/ relative to the current working directory.
"""
- xcode_stat = 0
- ninja_stat = 0
-
src_dir = src_dir or 'src'
-
ninja_path = os.path.join(src_dir, 'out', 'Release', 'build.ninja')
- try:
- ninja_stat = os.path.getmtime(ninja_path)
- except os.error:
- pass
-
xcode_path = os.path.join(
src_dir, 'build', 'all.xcodeproj', 'project.pbxproj')
- try:
- xcode_stat = os.path.getmtime(xcode_path)
- except os.error:
- pass
+ return IsFileNewerThanFile(ninja_path, xcode_path)
- return ninja_stat > xcode_stat
+def AreNinjaFilesNewerThanMSVSFiles(src_dir=None):
+ """Returns True if the generated ninja files are newer than the generated
+ msvs files.
+
+ Parameters:
+ src_dir: The path to the src directory. If None, it's assumed to be
+ at src/ relative to the current working directory.
+ """
+ src_dir = src_dir or 'src'
+ ninja_path = os.path.join(src_dir, 'out', 'Release', 'build.ninja')
+ msvs_path = os.path.join(src_dir, 'build', 'all.sln')
+ return IsFileNewerThanFile(ninja_path, msvs_path)
+
+# TODO(thakis): Remove parameters of this function, rename it to
M-A Ruel 2013/10/21 13:12:20 I prefer the TODO comment to be inside the functio
Nico 2013/10/21 14:14:09 Done.
+# GetBuildDirectory(), make it return just a path not a tuple.
def ConvertBuildDirToLegacy(build_dir, use_out=False):
- """Returns a tuple of (build_dir<str>, legacy<bool>).
+ """Returns the path to the build directory, relative to the checkout root.
+ Assumes that the current working directory is the checkout root.
M-A Ruel 2013/10/21 13:12:20 Add an empty line above.
Nico 2013/10/21 14:14:09 Done.
"""
- # TODO(thakis): Make this the canonical source of truth for build_dir for
- # slave scripts, remove all parameters.
- legacy_paths = {
- 'darwin': 'xcodebuild',
- }
- bad = False
+ if sys.platform.startswith('linux'):
+ return 'src/out', False
- platform_key = None
- for key in legacy_paths:
- if sys.platform.startswith(key):
- platform_key = key
- break
+ if sys.platform == 'darwin':
+ if AreNinjaFilesNewerThanXcodeFiles():
+ return 'src/out', False
+ return 'src/xcodebuild', False
- if (build_dir == 'src/build' and (platform_key or use_out)):
- print >> sys.stderr, (
- 'WARNING: Passed "%s" as --build-dir option on %s. '
- 'This is almost certainly incorrect.' % (build_dir, platform_key))
- if use_out:
- legacy_path = 'out'
- else:
- legacy_path = legacy_paths[platform_key]
- build_dir = os.path.join(os.path.dirname(build_dir), legacy_path)
- print >> sys.stderr, ('Assuming you meant "%s"' % build_dir)
- bad = True
+ if sys.platform == 'cygwin' or sys.platform.startswith('win'):
+ if AreNinjaFilesNewerThanMSVSFiles():
+ return 'src/out', False
+ return 'src/build', False
- return (build_dir, bad)
+ raise Exception('Unexpected platform ' + sys.platform)
M-A Ruel 2013/10/21 13:12:20 s/Exception/NotImplementedError/ and use '... %s'
Nico 2013/10/21 14:14:09 Done.
« 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