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
|
include_rules = [
# Allow inclusion of specific components that we depend on.
# See comment in content/DEPS for which components are allowed.
"+components/tracing",
"+components/variations/child_process_field_trial_syncer.h",
"+components/webcrypto",
"+components/services/font/public",
"+content/public/child",
"+device/fido/features.h",
"+services/device/public/cpp/device_features.h",
"+services/device/public/cpp/power_monitor",
"+services/device/public/mojom",
"+services/network/public/cpp",
"+services/resource_coordinator",
"+services/service_manager",
"+services/tracing",
"+v8/include/v8.h"
]
specific_include_rules = {
"child_thread_impl_browsertest\.*": [
"+components/discardable_memory/service",
],
}
|