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

Unified Diff: dart/tools/signing_script.py

Issue 61963002: Remove content_shell code from signing_script.py (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month 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: dart/tools/signing_script.py
diff --git a/dart/tools/signing_script.py b/dart/tools/signing_script.py
index 6a1eaf93a66b8ba062ec69886331cf15ac899e0b..55d80b18de2b37fd77d73168459e112648a65304 100755
--- a/dart/tools/signing_script.py
+++ b/dart/tools/signing_script.py
@@ -209,25 +209,19 @@ def main():
'macos' : {
'editor' : os.path.join('dart', 'DartEditor.app'),
'chrome' : os.path.join('dart', 'chromium', 'Chromium.app'),
- 'content_shell' : os.path.join('dart', 'chromium',
- 'Content Shell.app'),
'editor_scratch' : 'DartEditor%(bits)s.app',
'chrome_scratch' : 'Chromium%(bits)s.app',
- 'content_shell_scratch' : 'ContentShell%(bits)s.app',
'zip' : True,
},
'win32' : {
'editor' : os.path.join('dart', 'DartEditor.exe'),
'chrome' : os.path.join('dart', 'chromium', 'chrome.exe'),
- 'content_shell' : os.path.join('dart', 'chromium',
- 'content_shell.exe'),
'msi_scratch' : 'darteditor-installer-windows-%(bits)s.msi',
'editor_scratch' : 'DartEditor%(bits)s.exe',
'chrome_scratch' : 'chromium%(bits)s.exe',
- 'content_shell_scratch' : 'content_shell%(bits)s.exe',
'zip' : False,
},
@@ -257,7 +251,7 @@ def main():
run(['unzip', destination, '-d', destination_dir])
- for name in ['editor', 'chrome', 'content_shell']:
+ for name in ['editor', 'chrome']:
from_path = os.path.join(destination_dir, locations[system][name])
to_path = os.path.join(
presign_dir, locations[system]['%s_scratch' % name] % config)
@@ -278,7 +272,7 @@ def main():
elif options.deploy:
copy_tree(destination_dir, deploy_dir)
- for name in ['editor', 'chrome', 'content_shell']:
+ for name in ['editor', 'chrome']:
from_path = os.path.join(
postsign_dir, locations[system]['%s_scratch' % name] % config)
to_path = os.path.join(deploy_dir, locations[system][name])
« 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