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

Side by Side Diff: tools/web_dev_style/PRESUBMIT.py

Issue 2890513003: Move chrome/browser/web_dev_style/ to tools/ to use from more places (Closed)
Patch Set: tsergeant@ review Created 3 years, 7 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 unified diff | Download patch
« no previous file with comments | « tools/web_dev_style/OWNERS ('k') | tools/web_dev_style/__init__.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2017 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5
6 def CheckChangeOnUpload(*args):
7 return _CommonChecks(*args)
8
9
10 def CheckChangeOnCommit(*args):
11 return _CommonChecks(*args)
12
13
14 def _CommonChecks(input_api, output_api):
15 cwd = input_api.PresubmitLocalPath()
16 path = input_api.os_path
17 files = [path.basename(f.LocalPath()) for f in input_api.AffectedFiles()]
18 tests = []
19
20 if 'css_checker.py' in files:
21 tests.append(path.join(cwd, 'css_checker_test.py'))
22
23 utils_changed = 'regex_check.py' in files or 'test_util.py' in files
24
25 if utils_changed or any(f for f in files if f.startswith('html_checker')):
26 tests.append(path.join(cwd, 'html_checker_test.py'))
27
28 if utils_changed or any(f for f in files if f.startswith('js_checker')):
29 tests.append(path.join(cwd, 'js_checker_test.py'))
30
31 if utils_changed or any(f for f in files if f.startswith('resource_checker')):
32 tests.append(path.join(cwd, 'resource_checker_test.py'))
33
34 return input_api.canned_checks.RunUnitTests(input_api, output_api, tests)
OLDNEW
« no previous file with comments | « tools/web_dev_style/OWNERS ('k') | tools/web_dev_style/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698