blob: cd158fe21907aa2e4b82c696934f3c95909267ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
include_rules = [
"+content/public/common",
"+crypto",
"+testing",
"+ui"
]
# More specific rules for what we are allowed to include.
specific_include_rules = {
".*test\.cc$": [
"+content/public/test",
],
# Temporary includes for tests.
"^api_permission_set_unittest\.cc$": [
"+chrome/common/extensions/extension_messages.h",
],
}
|