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
|
include_rules = [
# In general this directory should not depend on any of components/,
# content/ or other third_party/blink directories.
"-components",
"-content",
"-third_party/blink",
# It is allowed to depend on common chromium stuff (and itself).
"+base",
"+build",
"+net",
"+media",
"+mojo",
"+services/metrics/public/cpp",
"+services/network/public/cpp",
"+services/network/public/mojom/web_sandbox_flags.mojom-shared.h",
"+services/network/public/mojom/url_loader.mojom.h",
"+services/network/public/mojom/url_loader_factory.mojom.h",
"+services/network/public/mojom/url_response_head.mojom.h",
"+services/network/public/mojom/url_response_head.mojom-forward.h",
"+skia/public/mojom/bitmap_skbitmap_mojom_traits.h",
"+testing/gmock/include/gmock",
"+testing/gtest/include/gtest",
"+third_party/blink/common",
"+third_party/blink/public/common",
"+third_party/blink/public/mojom",
"+third_party/icu/source/common/unicode/unistr.h",
"+ui/events/base_event_utils.h",
"+ui/gfx/transform.h",
"+ui/gfx/geometry",
"+ui/gfx/win/direct_write.h",
"+ui/latency/mojom/latency_info_mojom_traits.h",
"+url",
]
specific_include_rules = {
'.*unittest.?.cc': [ "+v8", "+services/network/test" ],
}
|