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

Unified Diff: tools/cygprofile/PRESUBMIT.py

Issue 281093002: Make cygprofile order functions by process and thread ID. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove unnecessary blank line Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/cygprofile/mergetraces.py » ('j') | tools/cygprofile/mergetraces.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « no previous file | tools/cygprofile/mergetraces.py » ('j') | tools/cygprofile/mergetraces.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698