blob: 9c458aa58150f4db5c861517d801e7e02905fb1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
include_rules = [
"-content",
"+content/public",
"+v8/include/v8.h",
]
# Ensure we don't leak internal content headers through public headers.
specific_include_rules = {
".*\.cc": [
# Testing utilities can access anything in content/
"+content",
"+media/base",
"+third_party/iaccessible2",
"+ui/base/resource/resource_bundle.h",
],
}
|