blob: 8589b782b9f2611b5a8189207c6841bc6a7e27c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
include_rules = [
"-content",
"+content/public",
]
# 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",
],
}
|