| Index: tools/cygprofile/PRESUBMIT.py
|
| diff --git a/tools/memory_inspector/PRESUBMIT.py b/tools/cygprofile/PRESUBMIT.py
|
| similarity index 76%
|
| copy from tools/memory_inspector/PRESUBMIT.py
|
| copy to tools/cygprofile/PRESUBMIT.py
|
| index 5d0e21e3d35ec130486171526ef8518fef52cd38..dd287466315b7f3550782e227a132124423a654a 100644
|
| --- a/tools/memory_inspector/PRESUBMIT.py
|
| +++ b/tools/cygprofile/PRESUBMIT.py
|
| @@ -2,7 +2,7 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| -"""Top-level presubmit script for memory_inspector.
|
| +"""Top-level presubmit script for cygprofile.
|
|
|
| See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts for
|
| details on the presubmit API built into gcl.
|
| @@ -11,13 +11,9 @@ details on the presubmit API built into gcl.
|
|
|
| def CommonChecks(input_api, output_api):
|
| output = []
|
| - blacklist = [r'classification_rules.*']
|
| + blacklist = []
|
| output.extend(input_api.canned_checks.RunPylint(
|
| - input_api, output_api, black_list=blacklist,
|
| - extra_paths_list=[
|
| - input_api.os_path.join(input_api.PresubmitLocalPath(), '..', '..',
|
| - 'build', 'android')
|
| - ]))
|
| + input_api, output_api, black_list=blacklist))
|
| output.extend(input_api.canned_checks.RunUnitTests(
|
| input_api,
|
| output_api,
|
|
|