Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1051)

Side by Side Diff: components/DEPS

Issue 266923008: Adjust the structure of DEPS within //components. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Some nits Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | components/README » ('j') | components/bookmarks/DEPS » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 include_rules = [ 1 include_rules = [
2 # Do not add chrome/ as an allowed include. 2 # Do not add chrome/ as an allowed include.
3 3
4 # Individual components must explicitly declare their dependencies 4 # Individual components must explicitly declare their dependencies
5 # on other components. Cycles in the dependency graph within 5 # on other components. Cycles in the dependency graph within
6 # components/ are not allowed. 6 # components/ are not allowed.
7 "-components", 7 "-components",
8 8
9 # Components should only depend on the public Content API, and on 9 # Components that wish to use the content API or IPC must explicitly declare
10 # layers below the Content Module. They must not depend on the 10 # these dependencies; see ./README.
11 # implementation of the Content Module. 11 "-ipc",
12 #
13 # Subdirectories of e.g. src/components/component_name should add
14 # the additional parts of the Content API that they need,
15 # e.g. components/component_name/browser/DEPS would add a
16 # "+content/public/browser" rule.
17 "+content/public/common",
18
19 # Dependencies of variations component.
20 "+third_party/mt19937ar",
21 ] 12 ]
OLDNEW
« no previous file with comments | « no previous file | components/README » ('j') | components/bookmarks/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698