2013-08-15 09:25:23 +00:00
|
|
|
# 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': {
|
2017-06-13 20:45:13 +00:00
|
|
|
'build': {
|
|
|
|
'filepath': (
|
|
|
|
'.*gyp$|'
|
|
|
|
'.*gypi$|'
|
|
|
|
'.*gn$|'
|
|
|
|
'.*gni$|'
|
|
|
|
'^tools/.*py$|'
|
|
|
|
'^build/|'
|
|
|
|
'^tools/buildtools/'
|
|
|
|
)
|
2014-03-12 23:09:53 +00:00
|
|
|
},
|
2017-02-27 11:59:50 +00:00
|
|
|
'front_end': {
|
|
|
|
'filepath': '^pkg/front_end',
|
2017-04-04 06:06:27 +00:00
|
|
|
},
|
2017-10-13 11:15:13 +00:00
|
|
|
'kernel': {
|
2018-01-02 17:47:04 +00:00
|
|
|
'filepath': '^pkg/kernel',
|
2017-10-13 11:15:13 +00:00
|
|
|
},
|
2018-07-20 22:04:55 +00:00
|
|
|
'dart2js': {
|
|
|
|
'filepath': (
|
|
|
|
'^pkg/compiler|'
|
|
|
|
'^tests/compiler'
|
|
|
|
)
|
|
|
|
},
|
2018-06-11 18:29:29 +00:00
|
|
|
'package_vm': {
|
|
|
|
'filepath': '^pkg/vm',
|
|
|
|
},
|
2017-04-04 06:06:27 +00:00
|
|
|
'messages_review': {
|
2017-04-18 12:50:59 +00:00
|
|
|
'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'
|
|
|
|
')$'
|
|
|
|
)
|
2017-04-04 06:06:27 +00:00
|
|
|
},
|
2017-06-13 20:45:13 +00:00
|
|
|
'observatory': {
|
|
|
|
'filepath': (
|
|
|
|
'^runtime/bin/vmservice/|'
|
|
|
|
'^runtime/bin/vmservice*|'
|
|
|
|
'^runtime/observatory/|'
|
|
|
|
'^runtime/vm/service/|'
|
2017-06-13 23:21:32 +00:00
|
|
|
'^runtime/vm/service*'
|
2017-06-13 20:45:13 +00:00
|
|
|
)
|
|
|
|
},
|
|
|
|
'runtime': {
|
|
|
|
'filepath': '^runtime/',
|
|
|
|
},
|
2018-11-20 15:06:59 +00:00
|
|
|
'vm_compiler': {
|
2018-11-23 10:24:02 +00:00
|
|
|
'filepath': '^runtime/(vm|docs)/compiler/',
|
2018-11-20 15:06:59 +00:00
|
|
|
},
|
2013-08-15 09:25:23 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
'WATCHLISTS': {
|
2019-05-07 21:01:50 +00:00
|
|
|
'build': [ 'keertip@google.com' ],
|
2018-11-20 15:06:59 +00:00
|
|
|
'dart2js': [ 'johnniwinther@google.com', 'sigmund@google.com',
|
|
|
|
'sra@google.com'],
|
2017-06-13 20:45:13 +00:00
|
|
|
'front_end': [ 'dart-fe-team+reviews@google.com' ],
|
2018-06-11 18:29:29 +00:00
|
|
|
'kernel': [ 'karlklose@google.com', 'jensj@google.com', 'kmillikin@google.com',
|
|
|
|
'alexmarkov@google.com' ],
|
2017-04-04 06:06:27 +00:00
|
|
|
'messages_review': [ 'dart-uxr+reviews@google.com' ],
|
2019-04-11 23:37:04 +00:00
|
|
|
'observatory': [ 'bkonyi@google.com' ],
|
2018-06-11 18:29:29 +00:00
|
|
|
'package_vm': [ 'alexmarkov@google.com' ],
|
2017-06-13 20:45:13 +00:00
|
|
|
'runtime': [ 'vm-dev@dartlang.org' ],
|
2018-11-20 15:06:59 +00:00
|
|
|
'vm_compiler': [ 'dart-vm-compiler-team+reviews@google.com' ],
|
2013-08-15 09:25:23 +00:00
|
|
|
},
|
|
|
|
}
|