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 27 matching lines...) Expand all Loading... |
38 "+third_party/npapi/bindings", | 38 "+third_party/npapi/bindings", |
39 "+third_party/skia", | 39 "+third_party/skia", |
40 "+third_party/sqlite", | 40 "+third_party/sqlite", |
41 "+third_party/tcmalloc", | 41 "+third_party/tcmalloc", |
42 "+third_party/khronos", | 42 "+third_party/khronos", |
43 "+third_party/webrtc", | 43 "+third_party/webrtc", |
44 "+third_party/WebKit/Source/Platform/chromium", | 44 "+third_party/WebKit/Source/Platform/chromium", |
45 "+third_party/WebKit/Source/WebKit/chromium", | 45 "+third_party/WebKit/Source/WebKit/chromium", |
46 | 46 |
47 # Aura is analogous to Win32 or a Gtk, so it is allowed. | 47 # Aura is analogous to Win32 or a Gtk, so it is allowed. |
| 48 "+ui/android", |
48 "+ui/aura", | 49 "+ui/aura", |
49 "+ui/base", | 50 "+ui/base", |
50 "+ui/compositor", | 51 "+ui/compositor", |
51 "+ui/gfx", | 52 "+ui/gfx", |
52 "+ui/gl", | 53 "+ui/gl", |
53 "+ui/surface", | 54 "+ui/surface", |
54 # Content knows about grd files, but the specifics of how to get a resource | 55 # Content knows about grd files, but the specifics of how to get a resource |
55 # given its id is left to the embedder. | 56 # given its id is left to the embedder. |
56 "-ui/base/l10n", | 57 "-ui/base/l10n", |
57 "-ui/base/resource", | 58 "-ui/base/resource", |
58 # This file isn't related to grd, so it's fine. | 59 # This file isn't related to grd, so it's fine. |
59 "+ui/base/l10n/l10n_util_win.h", | 60 "+ui/base/l10n/l10n_util_win.h", |
60 | 61 |
61 # Content shouldn't depend on views. While we technically don't need this | 62 # Content shouldn't depend on views. While we technically don't need this |
62 # line, since the top level DEPS doesn't allow it, we add it to make this | 63 # line, since the top level DEPS doesn't allow it, we add it to make this |
63 # explicit. | 64 # explicit. |
64 "-views", | 65 "-views", |
65 | 66 |
66 # Aura Shell consumes views, so it too is banned. | 67 # Aura Shell consumes views, so it too is banned. |
67 "-ui/aura_shell", | 68 "-ui/aura_shell", |
68 | 69 |
69 "+webkit", | 70 "+webkit", |
70 | 71 |
71 # For generated JNI includes | 72 # For generated JNI includes |
72 "+jni", | 73 "+jni", |
73 ] | 74 ] |
OLD | NEW |