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

Unified Diff: tools/android/loading/clovis_constants.py

Issue 2047463002: Set tracing categories explicitly in Clovis and Sandwich (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed comments Created 4 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 | « tools/android/loading/analyze.py ('k') | tools/android/loading/loading_trace.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/android/loading/clovis_constants.py
diff --git a/tools/android/loading/clovis_constants.py b/tools/android/loading/clovis_constants.py
new file mode 100644
index 0000000000000000000000000000000000000000..e64ddf0b2f2283f2ede20524577c2bec5bd4a76a
--- /dev/null
+++ b/tools/android/loading/clovis_constants.py
@@ -0,0 +1,21 @@
+# Copyright (c) 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Provides common constants for Clovis."""
+
+QUEUING_CATEGORY = 'disabled-by-default-loading.resource'
+
+# Categories to enable or disable for all traces collected. Disabled categories
+# are prefixed with '-'.
+DEFAULT_CATEGORIES = [
+ QUEUING_CATEGORY,
+ 'blink',
+ 'blink.net',
+ 'blink.user_timing',
+ 'devtools.timeline',
+ 'disabled-by-default-blink.debug.layout',
+ 'toplevel',
+ 'v8',
+ '-cc', # Contains a lot of events, none of which we use.
+]
« no previous file with comments | « tools/android/loading/analyze.py ('k') | tools/android/loading/loading_trace.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698