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
|
include_rules = [
"+components/keyed_service",
"+components/pref_registry",
"+components/sessions",
"+components/storage_monitor",
"+components/web_cache",
"+components/web_modal",
"+content/public/browser",
"+device/bluetooth",
"+device/usb",
"+google_apis/gaia",
"+grit/extensions_strings.h",
"+net",
"+skia/ext/image_operations.h",
"+storage/browser/fileapi",
"+sync",
"+third_party/leveldatabase",
"+third_party/re2",
"+third_party/skia/include",
"+third_party/WebKit/public/web",
]
specific_include_rules = {
".*test\.cc$": [
"+components/user_prefs",
]
}
|