summaryrefslogtreecommitdiffstats
path: root/components/DEPS
blob: 0ea897e6ff06a878b9a2e359da56d3f9191eff69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
include_rules = [
  # Do not add chrome/ as an allowed include.  Components MUST NOT
  # depend on anything under src/chrome.
  "-chrome",

  # Components should only depend on the public Content API, and on
  # layers below the Content Module. They must not depend on the
  # implementation of the Content Module.
  #
  # Subdirectories of e.g. src/components/component_name should add
  # the additional parts of the Content API that they need,
  # e.g. components/component_name/browser/DEPS would add a
  # "+content/public/browser" rule.
  "-content",
  "+content/public/common",

  # Dependencies of variations component.
  "+third_party/mt19937ar",
]