OLD | NEW |
1 # Do NOT add chrome to the list below. We shouldn't be including files from | 1 # Do NOT add chrome to the list below. We shouldn't be including files from |
2 # src/chrome in src/content. | 2 # src/chrome in src/content. |
3 include_rules = [ | 3 include_rules = [ |
4 "+crypto", | 4 "+crypto", |
5 | 5 |
6 # The subdirectories in content/ will manually allow their own include | 6 # The subdirectories in content/ will manually allow their own include |
7 # directories in content/ so we disallow all of them. | 7 # directories in content/ so we disallow all of them. |
8 "-content", | 8 "-content", |
9 "+content/common", | 9 "+content/common", |
10 "+content/public/common", | 10 "+content/public/common", |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 # Content knows about grd files, but the specifics of how to get a resource | 57 # Content knows about grd files, but the specifics of how to get a resource |
58 # given its id is left to the embedder. | 58 # given its id is left to the embedder. |
59 "-ui/base/l10n", | 59 "-ui/base/l10n", |
60 "-ui/base/resource", | 60 "-ui/base/resource", |
61 # This file isn't related to grd, so it's fine. | 61 # This file isn't related to grd, so it's fine. |
62 "+ui/base/l10n/l10n_util_win.h", | 62 "+ui/base/l10n/l10n_util_win.h", |
63 | 63 |
64 # Content shouldn't depend on views. While we technically don't need this | 64 # Content shouldn't depend on views. While we technically don't need this |
65 # line, since the top level DEPS doesn't allow it, we add it to make this | 65 # line, since the top level DEPS doesn't allow it, we add it to make this |
66 # explicit. | 66 # explicit. |
67 "-views", | 67 "-ui/views", |
68 | |
69 # Aura Shell consumes views, so it too is banned. | |
70 "-ui/aura_shell", | |
71 | 68 |
72 "+webkit", | 69 "+webkit", |
73 | 70 |
74 # For generated JNI includes | 71 # For generated JNI includes. |
75 "+jni", | 72 "+jni", |
76 ] | 73 ] |
OLD | NEW |