summaryrefslogtreecommitdiff
path: root/chromium/extensions/renderer/DEPS
blob: b1a57e80ad4880661f5cea567ac28a9002e22b22 (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
include_rules = [
  "+components/translate/core/language_detection",
  "+content/public/renderer",

  "+gin",
  "+net/base/backoff_entry.h",
  "+net/base/net_errors.h",

  "+third_party/skia/include/core",
  "+third_party/cld_3",

  "+third_party/blink/public/common/associated_interfaces/associated_interface_registry.h",
  "+third_party/blink/public/mojom/devtools/console_message.mojom.h",
  "+third_party/blink/public/mojom/loader/transferrable_url_loader.mojom.h",
  "+third_party/blink/public/mojom/frame/user_activation_notification_type.mojom.h",
  "+third_party/blink/public/mojom/service_worker/service_worker_registration.mojom.h",
  "+third_party/blink/public/platform",
  "+third_party/blink/public/strings/grit/blink_strings.h",
  "+third_party/blink/public/web",
  "+third_party/zlib/google/compression_utils.h",

  "+tools/json_schema_compiler",

  "+ui/accessibility",

  "-v8",
  "+v8/include",

  "+storage/common/file_system",

  "+services/metrics/public/cpp",
  "+services/network/public",
  "+services/service_manager/public/cpp",
]

specific_include_rules = {
  ".*(test|test_util)\.(cc|h)$": [
    # Temporarily allowed testing includes.  See above.
    # TODO(devlin): Ideally, we'd remove these (or move the tests into
    # //chrome). See https://crbug.com/773004.
    "+chrome/test/base/chrome_render_view_test.h",
  ],
  "extension_throttle_manager.cc": [
    # For net::IsLocalhost.
    "+net/base/url_util.h",
  ],
  "extension_throttle_unittest.cc": [
    "+net/url_request/redirect_info.h",
  ],
  # Temporarily allow crash_key; see https://crbug.com/1034755
  "automation_ax_tree_wrapper.cc": [
    "+components/crash/core/common/crash_key.h",
  ]
}