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

Unified Diff: devserver.py

Issue 4129005: Add delta support to images generated by the dev server. (Closed) Base URL: http://git.chromium.org/git/dev-util.git
Patch Set: remove whitespace Created 10 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 | « autoupdate.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: devserver.py
diff --git a/devserver.py b/devserver.py
index d1ea181a12120b60f528e670dcc7bcc7d5f9fe57..0f6eeadf3fc308fc013ec0ddd5d6b76f419c1e30 100755
--- a/devserver.py
+++ b/devserver.py
@@ -120,6 +120,8 @@ if __name__ == '__main__':
help='Force update using this image.')
parser.add_option('--port', default=8080,
help='Port for the dev server to use.')
+ parser.add_option('--src_image', default='',
+ help='Image on remote machine for generating delta update.')
parser.add_option('-t', action='store_true', dest='test_image')
parser.add_option('-u', '--urlbase', dest='urlbase',
help='base URL, other than devserver, for update images.')
@@ -156,7 +158,8 @@ if __name__ == '__main__':
client_prefix=options.client_prefix,
forced_image=options.image,
use_cached=options.use_cached,
- port=options.port)
+ port=options.port,
+ src_image=options.src_image)
# Sanity-check for use of validate_factory_config.
if not options.factory_config and options.validate_factory_config:
« no previous file with comments | « autoupdate.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698