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

Unified Diff: gmerge

Issue 6824021: Add features flag to gmerge. (Closed) Base URL: http://git.chromium.org/git/dev-util.git@master
Patch Set: Created 9 years, 8 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
« builder.py ('K') | « builder.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gmerge
diff --git a/gmerge b/gmerge
index 363233f187c91e1cd538939322e8fb8624937be4..e61fb421ad0906e6fc2dbd58ce37671d15bad7c7 100755
--- a/gmerge
+++ b/gmerge
@@ -72,6 +72,7 @@ class GMerger(object):
"""Build the POST string that conveys our options to the devserver."""
post_data = {'board': self.board_name,
'pkg': package_name,
+ 'features': FLAGS.features,
'use': FLAGS.use,
'accept_stable': FLAGS.accept_stable,
}
@@ -102,6 +103,9 @@ def main():
parser.add_option('-n', '--no_devserver',
action='store_false', dest='call_devserver', default=True,
help='Do not actually ask the server to build')
+ parser.add_option('--features', '--FEATURES',
+ dest='features', default=None,
rochberg 2011/04/09 19:59:34 Feel free to say "another CL" or "No U", but I thi
+ help='FEATURES flags to pass to emerge on the server')
parser.add_option('--use', '--USE',
dest='use', default=None,
help='USE flags to pass to emerge on the server')
« builder.py ('K') | « builder.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698