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
|
# Do NOT add chrome to the list below. We shouldn't be including files from
# src/chrome in src/content.
include_rules = [
"+app",
# TEMPORARY ONLY WHILE WE REDUCE THE DEPENDENCIES.
# When the src\content refactoring is complete, this will be unnecessary (and
# in fact, a layering violation).
"+chrome",
"+grit",
"+media",
"+net",
"+ppapi",
"+printing",
"+skia",
# Don't allow inclusion of these other libs we shouldn't be calling directly.
"-v8",
"-tools",
"+third_party/npapi/bindings",
"+third_party/sqlite",
# Allow inclusion of WebKit API files.
"+third_party/WebKit/Source/WebKit/chromium",
"+ui",
"+views",
"+webkit",
]
|