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 "-chrome", | 6 "-chrome", |
7 # Until we move most of our testing infrastructure in a way that content can | 7 # Until we move most of our testing infrastructure in a way that content can |
8 # make use of it. | 8 # make use of it. |
9 "+chrome/test", | 9 "+chrome/test", |
10 | 10 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 "+third_party/khronos", | 47 "+third_party/khronos", |
48 "+third_party/webrtc", | 48 "+third_party/webrtc", |
49 "+third_party/WebKit/Source/Platform/chromium", | 49 "+third_party/WebKit/Source/Platform/chromium", |
50 "+third_party/WebKit/Source/WebKit/chromium", | 50 "+third_party/WebKit/Source/WebKit/chromium", |
51 | 51 |
52 # Aura is analogous to Win32 or a Gtk, so it is allowed. | 52 # Aura is analogous to Win32 or a Gtk, so it is allowed. |
53 "+ui/aura", | 53 "+ui/aura", |
54 "+ui/base", | 54 "+ui/base", |
55 "+ui/compositor", | 55 "+ui/compositor", |
56 "+ui/gfx", | 56 "+ui/gfx", |
| 57 "+ui/gl", |
57 "+ui/surface", | 58 "+ui/surface", |
58 # Content knows about grd files, but the specifics of how to get a resource | 59 # Content knows about grd files, but the specifics of how to get a resource |
59 # given its id is left to the embedder. | 60 # given its id is left to the embedder. |
60 "-ui/base/l10n", | 61 "-ui/base/l10n", |
61 "-ui/base/resource", | 62 "-ui/base/resource", |
62 # This file isn't related to grd, so it's fine. | 63 # This file isn't related to grd, so it's fine. |
63 "+ui/base/l10n/l10n_util_win.h", | 64 "+ui/base/l10n/l10n_util_win.h", |
64 | 65 |
65 # Content shouldn't depend on views. While we technically don't need this | 66 # Content shouldn't depend on views. While we technically don't need this |
66 # line, since the top level DEPS doesn't allow it, we add it to make this | 67 # line, since the top level DEPS doesn't allow it, we add it to make this |
67 # explicit. | 68 # explicit. |
68 "-views", | 69 "-views", |
69 | 70 |
70 # Aura Shell consumes views, so it too is banned. | 71 # Aura Shell consumes views, so it too is banned. |
71 "-ui/aura_shell", | 72 "-ui/aura_shell", |
72 | 73 |
73 "+webkit", | 74 "+webkit", |
74 ] | 75 ] |
OLD | NEW |