blob: c8c74d681a38c0e509bf03f745ae7785a56eeb3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Please do not add dependency to chrome/ and its subdirectories
include_rules = [
# Components within athena must state their dependencies explicitly
# except for common.
"-athena",
"+athena/util",
]
specific_include_rules = {
".*unittest\.cc": [
"+athena/test",
],
".*browsertest\.cc": [
"+athena/test",
],
}
|