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
|
include_rules = [
"+components/translate/core/language_detection",
"+content/public/child",
"+content/public/renderer",
"+gin",
"+mojo/edk/js",
"+third_party/skia/include/core",
"+third_party/cld_3",
"+third_party/blink/public/mojom/page/page_visibility_state.mojom.h",
"+third_party/blink/public/platform",
"+third_party/blink/public/web",
"+third_party/zlib/google/compression_utils.h",
"+tools/json_schema_compiler",
"-v8",
"+v8/include",
"+storage/common/fileapi",
"+services/network/public",
"+services/service_manager/public/cpp",
]
specific_include_rules = {
".*(test|test_util)\.(cc|h)$": [
# Temporarily allowed testing includes. See above.
# TODO(devlin): Ideally, we'd remove these (or move the tests into
# //chrome). See https://crbug.com/773004.
"+chrome/test/base/chrome_render_view_test.h",
],
}
|