forked from dart-lang/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WATCHLISTS
67 lines (64 loc) · 1.92 KB
/
WATCHLISTS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
# for details. All rights reserved. Use of this source code is governed by a
# BSD-style license that can be found in the LICENSE file.
# Watchlist Rules
# Refer: http://dev.chromium.org/developers/contributing-code/watchlists
{
'WATCHLIST_DEFINITIONS': {
'build': {
'filepath': (
'.*gyp$|'
'.*gypi$|'
'.*gn$|'
'.*gni$|'
'^tools/.*py$|'
'^build/|'
'^tools/buildtools/'
)
},
'front_end': {
'filepath': '^pkg/front_end',
},
'kernel': {
'filepath': '^pkg/kernel'
},
'messages_review': {
'filepath': (
'^('
'pkg/front_end/messages\\.yaml|'
'pkg/compiler/lib/src/diagnostics/messages\\.dart|'
'pkg/analyzer/lib/src/analysis_options/error/option_codes\\.dart|'
'pkg/analyzer/lib/src/dart/error/hint_codes\\.dart|'
'pkg/analyzer/lib/src/dart/error/lint_codes\\.dart|'
'pkg/analyzer/lib/src/dart/error/todo_codes\\.dart|'
'pkg/analyzer/lib/src/html/error/html_codes\\.dart|'
'pkg/dart_messages/lib/shared_messages\\.dart'
')$'
)
},
'mirrors' : {
'filepath': '.*mirrors.*',
},
'observatory': {
'filepath': (
'^runtime/bin/vmservice/|'
'^runtime/bin/vmservice*|'
'^runtime/observatory/|'
'^runtime/vm/service/|'
'^runtime/vm/service*'
)
},
'runtime': {
'filepath': '^runtime/',
},
},
'WATCHLISTS': {
'build': [ '[email protected]', '[email protected]' ],
'front_end': [ '[email protected]' ],
'messages_review': [ '[email protected]' ],
'mirrors' : [ '[email protected]' ],
'observatory': [ '[email protected]' ],
'runtime': [ '[email protected]' ],
},
}