blob: e0158481a9d17f537ef87fe0fa8dea0dbd826e23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
include_rules = [
# TODO(benwells): Once the extensions component is established
# and there are only chrome specific extension things left in
# chrome/browser/extensions, the restriction of not being able
# to depend on apps will be lifted.
"-apps",
"-chrome/browser/apps",
"+components/chrome_apps",
"+components/crx_file",
"+components/strings/grit/components_strings.h",
"+components/user_manager",
"+extensions/strings/grit/extensions_strings.h",
"+grit", # For generated headers
# For access to testing command line switches.
"+ppapi/shared_impl",
# For safe_json
"+components/safe_json",
"+ui/base",
]
|