blob: 95705689c08fc908911514d016aee2c7cf7db363 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
include_rules = [
"+app",
"+net",
"+printing",
"+views",
# The subdirectories in chrome/ will manually allow their own include
# directories in chrome/ so we disallow all of them.
"-chrome",
"+chrome/common",
"+chrome/test",
# Don't allow inclusion of these other libs we shouldn't be calling directly.
"-v8",
"-webkit",
"-tools",
# Allow inclusion of WebKit API files.
"+webkit/api",
# Brett's test. Contact him for questions.
"+frame_window",
]
|