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