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

Unified Diff: scripts/slave/recipe_modules/isolate/resources/remove_build_metadata.py

Issue 678713002: Make remove_build_metadata.py compatible with the new version of zap_timestamp. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 6 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: scripts/slave/recipe_modules/isolate/resources/remove_build_metadata.py
diff --git a/scripts/slave/recipe_modules/isolate/resources/remove_build_metadata.py b/scripts/slave/recipe_modules/isolate/resources/remove_build_metadata.py
index fd34ae8b26cb0405a0494dd438cdca2754d90456..ecf4825b9926e34daddf1caec416fd60a0b591ad 100644
--- a/scripts/slave/recipe_modules/isolate/resources/remove_build_metadata.py
+++ b/scripts/slave/recipe_modules/isolate/resources/remove_build_metadata.py
@@ -18,7 +18,9 @@ def RunZapTimestamp(src_dir, filename):
syzygy_dir = os.path.join(
src_dir, 'third_party', 'syzygy', 'binaries', 'exe')
zap_timestamp_exe = os.path.join(syzygy_dir, 'zap_timestamp.exe')
- return subprocess.call([zap_timestamp_exe, filename])
+ return subprocess.call([zap_timestamp_exe,
+ '--input-image=%s' % filename,
+ '--overwrite'])
def RemovePEMetadata(build_dir, src_dir):
« 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