Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 """Presubmit script for app_list. | 5 """Presubmit script for app_list. |
| 6 | 6 |
| 7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts | 7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts |
| 8 for more details about the presubmit API built into depot_tools. | 8 for more details about the presubmit API built into depot_tools. |
| 9 """ | 9 """ |
| 10 | 10 |
| 11 INCLUDE_CPP_FILES_ONLY = ( | 11 INCLUDE_CPP_FILES_ONLY = ( |
| 12 r'.*\.(cc|h)$', | 12 r'.*\.(cc|h)$', |
| 13 ) | 13 ) |
| 14 | 14 |
| 15 EXCLUDE = ( | 15 EXCLUDE = ( |
| 16 # Objective C confuses everything. | 16 # Objective C confuses everything. |
| 17 r'.*/cocoa/.*', | 17 r'.*/cocoa/.*', |
| 18 ) | 18 ) |
| 19 | 19 |
| 20 def CheckChangeLintsClean(input_api, output_api): | 20 def CheckChangeLintsClean(input_api, output_api): |
| 21 """Makes sure that the ui/app_list/ code is cpplint clean.""" | 21 """Makes sure that the ui/app_list/ code is cpplint clean.""" |
| 22 black_list = input_api.DEFAULT_BLACK_LIST + EXCLUDE | 22 black_list = input_api.DEFAULT_BLACK_LIST + EXCLUDE |
| 23 sources = lambda x: input_api.FilterSourceFile( | 23 sources = lambda x: input_api.FilterSourceFile( |
| 24 x, white_list = INCLUDE_CPP_FILES_ONLY, black_list = black_list) | 24 x, white_list = INCLUDE_CPP_FILES_ONLY, black_list = black_list) |
| 25 return input_api.canned_checks.CheckChangeLintsClean( | 25 return input_api.canned_checks.CheckChangeLintsClean( |
| 26 input_api, output_api, sources) | 26 input_api, output_api, sources, '') |
|
tfarina
2014/12/14 03:35:59
Is this correct?
Hopefully, this will help us to
tapted
2014/12/15 22:12:55
nah - it should be []
i.e.
return input_api.ca
tfarina
2014/12/15 23:45:19
Thanks for being patience with me in these review
| |
| 27 | 27 |
| 28 def CheckChangeOnUpload(input_api, output_api): | 28 def CheckChangeOnUpload(input_api, output_api): |
| 29 results = [] | 29 results = [] |
| 30 results += CheckChangeLintsClean(input_api, output_api) | 30 results += CheckChangeLintsClean(input_api, output_api) |
| 31 results += input_api.canned_checks.CheckPatchFormatted(input_api, output_api) | 31 results += input_api.canned_checks.CheckPatchFormatted(input_api, output_api) |
| 32 return results | 32 return results |
| OLD | NEW |