blob: cae9129c790d7f41aa170d86e547696e8911b36b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
include_rules = [
"+components/payments/mojom/payment_app.mojom.h",
"+device/screen_orientation/public/interfaces",
"+device/wake_lock/public/interfaces",
]
specific_include_rules = {
".*\.cc": [
"+content/browser",
"-content/browser/loader",
# TODO: content/browser/loader is being separated out of content, and this
# file will be moved elsewhere. See http://crbug.com/598073.
"!content/browser/loader/resource_dispatcher_host_impl.h",
],
"desktop_capture\.h": [
# desktop_capture.h creates a DesktopCaptureOptions to share between
# content/browser and chrome/browser.
"+third_party/webrtc/modules/desktop_capture/desktop_capture_options.h",
],
}
|