diff options
author | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-04 19:48:48 +0000 |
---|---|---|
committer | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-04 19:48:48 +0000 |
commit | a3aec3246afd1c1c42983f96e4c9a9283dceb151 (patch) | |
tree | dc9ced9519696f1652dfaa75eb19814e828c9289 /ppapi/PRESUBMIT.py | |
parent | b17406480669e684467c9d1e76f26b063a3460e4 (diff) | |
download | chromium_src-a3aec3246afd1c1c42983f96e4c9a9283dceb151.zip chromium_src-a3aec3246afd1c1c42983f96e4c9a9283dceb151.tar.gz chromium_src-a3aec3246afd1c1c42983f96e4c9a9283dceb151.tar.bz2 |
Allow defaults for generator which will check all available versions.
Change the default 'range' for the presubmit and generator to be start,end
which represent the first and last Label found in the IDL.
BUG= http://code.google.com/p/chromium/issues/detail?id=103037\
TRY= ./generate.py
Review URL: http://codereview.chromium.org/8478005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108697 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/PRESUBMIT.py')
-rw-r--r-- | ppapi/PRESUBMIT.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/PRESUBMIT.py b/ppapi/PRESUBMIT.py index 61b1da0..90b809c 100644 --- a/ppapi/PRESUBMIT.py +++ b/ppapi/PRESUBMIT.py @@ -47,7 +47,7 @@ def CheckChange(input_api, output_api): # --out to pick which files to examine (only the ones in the CL) ppapi_dir = input_api.PresubmitLocalPath() cmd = [ sys.executable, 'generator.py', - '--wnone', '--diff', '--test','--cgen', '--range=M13,M16'] + '--wnone', '--diff', '--test','--cgen', '--range=start,end'] # Only generate output for IDL files references (as *.h or *.idl) in this CL cmd.append('--out=' + ','.join([name + '.idl' for name in both])) |