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

Side by Side Diff: build/android/pylib/symbols/PRESUBMIT.py

Issue 167893009: [Android] Add fast ELF Symbolizer to pylib. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add inlines support + tests Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | build/android/pylib/symbols/__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 2014 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 def CommonChecks(input_api, output_api):
6 output = []
7 output.extend(input_api.canned_checks.RunPylint(input_api, output_api))
8 output.extend(input_api.canned_checks.RunUnitTestsInDirectory(
9 input_api,
10 output_api,
11 input_api.PresubmitLocalPath(),
12 whitelist=[r'^.+_unittest\.py$']))
13 return output
14
15
16 def CheckChangeOnUpload(input_api, output_api):
17 return CommonChecks(input_api, output_api)
18
19
20 def CheckChangeOnCommit(input_api, output_api):
21 return CommonChecks(input_api, output_api)
OLDNEW
« no previous file with comments | « no previous file | build/android/pylib/symbols/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698