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

Unified Diff: tools/export_tarball/export_tarball.py

Issue 1982423002: Get rid of LASTCHANGE.blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 | « content/content_common.gypi ('k') | no next file » | 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 876b3d89d35e61de66239268a46c96747c7586f1..e135c9a44f628157eff583f4c72a29d83cee8527 100755
--- a/tools/export_tarball/export_tarball.py
+++ b/tools/export_tarball/export_tarball.py
@@ -146,17 +146,11 @@ def main(argv):
print 'Cannot find the src directory ' + GetSourceDirectory()
return 1
- # These two commands are from src/DEPS; please keep them in sync.
+ # This command is from src/DEPS; please keep them in sync.
scottmg 2016/05/17 17:19:27 keep them -> keep it
scottmg 2016/05/17 17:20:40 Actually, 'keep them' is better (I interpreted ref
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',
- 'third_party/WebKit', '-o',
- '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 | « content/content_common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698