| 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.
|
| +]
|
|
|