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
|
include_rules = [
"+chrome/app",
"+chrome/app/locales",
"+chrome/installer",
"+chrome/personalization",
"+chrome/tools/profiles", # For history unit tests.
"+chrome/views",
"+grit", # For generated headers
"+sandbox/src",
"+skia/include",
"+skia/ext",
"+webkit/default_plugin",
"+webkit/glue", # Defines some types that are marshalled over IPC.
# Other libraries.
"+chrome/third_party/hunspell",
"+libxml", # For search engine definition parsing.
"+media/audio", # Chrome's lightweight audio library.
"+third_party/sqlite",
"+third_party/libevent", # For the remote V8 debugging server
"+v8/include", # Browser uses V8 to get the version and run the debugger.
# FIXME: this should probably not be here, we need to find a better
# structure for these includes.
"+chrome/renderer",
]
|