| Index: build/android/PRESUBMIT.py
|
| diff --git a/build/android/PRESUBMIT.py b/build/android/PRESUBMIT.py
|
| index 8cfe59c4eff5374aa7d65871755d0b397d2730a0..b0e38e80381ad972ec7ae3d31c632d95c9382343 100644
|
| --- a/build/android/PRESUBMIT.py
|
| +++ b/build/android/PRESUBMIT.py
|
| @@ -27,9 +27,13 @@ def CommonChecks(input_api, output_api):
|
| input_api,
|
| output_api,
|
| pylintrc='pylintrc',
|
| - # devil and symbols have their own PRESUBMIT.py
|
| - black_list=build_pys + [r'devil/.*\.py$', r'pylib/symbols/.*\.py$'],
|
| - extra_paths_list=[J(), J('buildbot')]))
|
| + # symbols has their own PRESUBMIT.py
|
| + black_list=build_pys + [r'pylib/symbols/.*\.py$'],
|
| + extra_paths_list=[
|
| + J(),
|
| + J('buildbot'),
|
| + J('..', '..', 'third_party', 'catapult', 'devil')
|
| + ]))
|
| output.extend(input_api.canned_checks.RunPylint(
|
| input_api,
|
| output_api,
|
|
|