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
28
29
30
31
32
33
34
|
include_rules = [
"+athena/activity/public",
"+athena/content/public",
"+athena/home/public",
"+athena/input/public",
"+athena/screen/public",
"+athena/task/public",
"+athena/wm/public",
"+content/public",
"+ui/aura",
"+ui/base",
"+ui/compositor",
"+ui/events",
"+ui/gl",
"+ui/wm/core",
]
specific_include_rules = {
"athena_main\.cc": [
"+apps/shell/app",
"+apps/shell/browser",
"+content/public/app",
],
"athena_shell\.cc": [
"+athena/test",
],
# TODO(oshima): Remove this.
"placeholder\.*": [
"+third_party/skia",
"+ui/gfx",
"+ui/views",
],
}
|