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 19 matching lines...) Expand all Loading... |
30 # Don't allow inclusion of these other libs we shouldn't be calling directly. | 30 # Don't allow inclusion of these other libs we shouldn't be calling directly. |
31 "-v8", | 31 "-v8", |
32 "-tools", | 32 "-tools", |
33 | 33 |
34 # Allow inclusion of third-party code: | 34 # Allow inclusion of third-party code: |
35 "+third_party/gpsd", | 35 "+third_party/gpsd", |
36 "+third_party/mozilla", | 36 "+third_party/mozilla", |
37 "+third_party/npapi/bindings", | 37 "+third_party/npapi/bindings", |
38 "+third_party/sqlite", | 38 "+third_party/sqlite", |
39 "+third_party/tcmalloc", | 39 "+third_party/tcmalloc", |
| 40 "+third_party/khronos", |
40 # Allow inclusion of WebKit API files. | 41 # Allow inclusion of WebKit API files. |
41 "+third_party/WebKit/Source/WebKit/chromium", | 42 "+third_party/WebKit/Source/WebKit/chromium", |
42 | 43 |
43 # Aura is analogous to Win32 or a Gtk, so it is allowed. | 44 # Aura is analogous to Win32 or a Gtk, so it is allowed. |
44 "+ui/aura", | 45 "+ui/aura", |
45 "+ui/base", | 46 "+ui/base", |
46 "+ui/gfx", | 47 "+ui/gfx", |
47 # Content knows about grd files, but the specifics of how to get a resource | 48 # Content knows about grd files, but the specifics of how to get a resource |
48 # given its id is left to the embedder. | 49 # given its id is left to the embedder. |
49 "-ui/base/l10n", | 50 "-ui/base/l10n", |
50 "-ui/base/resource", | 51 "-ui/base/resource", |
51 # This file isn't related to grd, so it's fine. | 52 # This file isn't related to grd, so it's fine. |
52 "+ui/base/l10n/l10n_util_win.h", | 53 "+ui/base/l10n/l10n_util_win.h", |
53 | 54 |
54 # Content shouldn't depend on views. While we technically don't need this | 55 # Content shouldn't depend on views. While we technically don't need this |
55 # line, since the top level DEPS doesn't allow it, we add it to make this | 56 # line, since the top level DEPS doesn't allow it, we add it to make this |
56 # explicit. | 57 # explicit. |
57 "-views", | 58 "-views", |
58 | 59 |
59 # Aura Shell consumes views, so it too is banned. | 60 # Aura Shell consumes views, so it too is banned. |
60 "-ui/aura_shell", | 61 "-ui/aura_shell", |
61 | 62 |
62 "+webkit", | 63 "+webkit", |
63 ] | 64 ] |
OLD | NEW |