1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
include_rules = [
"+cc/blink",
"+content/public/renderer",
"+content/child",
"+gin",
"+jingle/glue",
"+media", # For audio input/output and audio/video decoding.
"+third_party/hyphen/hyphen.h",
"+third_party/libjingle",
"+third_party/tcmalloc",
"+v8/include",
"+v8/src/third_party/vtune",
"-webkit/browser",
]
specific_include_rules = {
'.*_[a-z]*browsertest.*': [
"+content/public/browser",
"+content/shell",
],
}
|