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

Unified Diff: tools/export_tarball/export_tarball.py

Issue 14973005: Generate and use LASTCHANGE for blink (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 7 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 | « build/util/lastchange.py ('k') | webkit/build/webkit_version.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/export_tarball/export_tarball.py
diff --git a/tools/export_tarball/export_tarball.py b/tools/export_tarball/export_tarball.py
index 148162b482d58ad7d71b41bc1a7e123102d3e46e..ec0785c4c4dfe17e44a807561bd8f7ff58886d4c 100755
--- a/tools/export_tarball/export_tarball.py
+++ b/tools/export_tarball/export_tarball.py
@@ -134,11 +134,17 @@ def main(argv):
print 'Cannot find the src directory ' + GetSourceDirectory()
return 1
- # This command is from src/DEPS; please keep them in sync.
+ # These two commands are from src/DEPS; please keep them in sync.
if subprocess.call(['python', 'build/util/lastchange.py', '-o',
'build/util/LASTCHANGE'], cwd=GetSourceDirectory()) != 0:
print 'Could not run build/util/lastchange.py to update LASTCHANGE.'
return 1
+ if subprocess.call(['python', 'build/util/lastchange.py', '-s',
+ 'src/third_party/WebKit', '-o',
Paweł Hajdan Jr. 2013/06/14 20:44:00 Note: this broke the script (could be easily detec
+ 'src/build/util/LASTCHANGE.blink'],
+ cwd=GetSourceDirectory()) != 0:
+ print 'Could not run build/util/lastchange.py to update LASTCHANGE.blink.'
+ return 1
output_fullname = args[0] + '.tar'
output_basename = options.basename or os.path.basename(args[0])
« no previous file with comments | « build/util/lastchange.py ('k') | webkit/build/webkit_version.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698