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
35
36
37
38
|
include_rules = [
"+athena/activity/public",
"+athena/extensions/public",
"+athena/home/public",
"+athena/input/public",
"+athena/resource_manager/public",
"+athena/strings/grit/athena_strings.h",
"+athena/wm/public",
"+components/favicon_base",
"+components/metrics/proto",
"+components/omnibox",
"+components/renderer_context_menu",
"+components/web_modal",
"+content/public",
"+net/url_request",
"+ui/aura",
"+ui/base",
"+ui/compositor",
"+ui/gfx",
"+ui/views",
"+ui/wm/core",
# No inclusion of WebKit from the athena main process, other than
# strictly enum/POD, header-only types, and some selected common code.
"+third_party/WebKit/public/web/WebContextMenuData.h",
]
specific_include_rules = {
"app_activity_unittest.cc": [
"+extensions/common",
],
"content_proxy_browsertest.cc": [
"+athena/test",
],
"app_activity_browsertest.cc": [
"+athena/test",
],
}
|