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
|
# This component is shared with the Chrome OS build, so it's important to limit
# dependencies to a minimal set.
include_rules = [
"-components",
"+components/browser_watcher",
"+components/component_updater",
"+components/metrics",
"+components/prefs",
"+components/variations",
"+components/version_info",
"+content/public/test",
"+crypto",
"+extensions/buildflags",
"+mojo/public/cpp",
"+services/service_manager/public/cpp",
"+third_party/metrics_proto",
"+third_party/zlib/google",
"-net",
"+url"
]
specific_include_rules = {
"log_decoder\.cc": [
"+third_party/protobuf/src/google/protobuf",
],
}
|