blob: 12876fdccfa33a7d2527b8168a3a6370b971edcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
include_rules = [
# Allow inclusion of specific components that we depend on. We may only
# depend on components which we share with the mojo html_viewer.
"+components/scheduler/renderer",
"+cc/blink",
"+chromeos/audio", # For WebRTC tests.
# Testing utilities can access anything in content/
"+content",
# For loading V8's initial snapshot from external files.
"+gin/v8_initializer.h",
"+media/audio", # For AudioParameters in WebRTC tests.
"+media/base", # For ChannelLayout in WebRTC tests.
"+ui/base/resource/data_pack.h",
"+ui/base/resource/resource_bundle.h",
"!v8/include/v8.h",
]
|