OLD | NEW |
1 # Do NOT add chrome or components to the list below. We shouldn't be | 1 # Do NOT add chrome or components to the list below. We shouldn't be |
2 # including files from src/chrome or src/components in src/content. | 2 # including files from src/chrome or src/components in src/content. |
3 include_rules = [ | 3 include_rules = [ |
4 # The subdirectories in content/ will manually allow their own include | 4 # The subdirectories in content/ will manually allow their own include |
5 # directories in content/ so we disallow all of them. | 5 # directories in content/ so we disallow all of them. |
6 "-content", | 6 "-content", |
7 "+content/app/resources/grit/content_resources.h", | 7 "+content/app/resources/grit/content_resources.h", |
8 "+content/common", | 8 "+content/common", |
9 "+content/grit", | 9 "+content/grit", |
10 "+content/public/common", | 10 "+content/public/common", |
(...skipping 11 matching lines...) Expand all Loading... |
22 "+cc", | 22 "+cc", |
23 "-cc/blink", | 23 "-cc/blink", |
24 # If you want to use any of these files, move them to src/base first. | 24 # If you want to use any of these files, move them to src/base first. |
25 "-cc/base/scoped_ptr_algorithm.h", | 25 "-cc/base/scoped_ptr_algorithm.h", |
26 "-cc/base/scoped_ptr_deque.h", | 26 "-cc/base/scoped_ptr_deque.h", |
27 "-cc/base/scoped_ptr_vector.h", | 27 "-cc/base/scoped_ptr_vector.h", |
28 | 28 |
29 "+crypto", | 29 "+crypto", |
30 "+grit/blink_resources.h", | 30 "+grit/blink_resources.h", |
31 "+grit/content_strings.h", | 31 "+grit/content_strings.h", |
32 "+grit/ui_strings.h", | |
33 "+grit/webui_resources.h", | 32 "+grit/webui_resources.h", |
34 "+grit/webui_resources_map.h", | 33 "+grit/webui_resources_map.h", |
35 | 34 |
36 "+dbus", | 35 "+dbus", |
37 "+gpu", | 36 "+gpu", |
38 "+mojo/application_manager", | 37 "+mojo/application_manager", |
39 "+mojo/bindings/js", | 38 "+mojo/bindings/js", |
40 "+mojo/common", | 39 "+mojo/common", |
41 "+mojo/embedder", | 40 "+mojo/embedder", |
42 "+mojo/public", | 41 "+mojo/public", |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 "+ui/aura", | 83 "+ui/aura", |
85 "+ui/base", | 84 "+ui/base", |
86 "+ui/compositor", | 85 "+ui/compositor", |
87 "+ui/events", | 86 "+ui/events", |
88 "+ui/gfx", | 87 "+ui/gfx", |
89 "+ui/gl", | 88 "+ui/gl", |
90 "+ui/native_theme", | 89 "+ui/native_theme", |
91 "+ui/ozone/gpu", | 90 "+ui/ozone/gpu", |
92 "+ui/ozone/public", | 91 "+ui/ozone/public", |
93 "+ui/resources/grit/ui_resources.h", | 92 "+ui/resources/grit/ui_resources.h", |
| 93 "+ui/strings/grit/ui_strings.h", |
94 "+ui/shell_dialogs", | 94 "+ui/shell_dialogs", |
95 "+ui/snapshot", | 95 "+ui/snapshot", |
96 "+ui/surface", | 96 "+ui/surface", |
97 "+ui/wm", | 97 "+ui/wm", |
98 # Content knows about grd files, but the specifics of how to get a resource | 98 # Content knows about grd files, but the specifics of how to get a resource |
99 # given its id is left to the embedder. | 99 # given its id is left to the embedder. |
100 "-ui/base/l10n", | 100 "-ui/base/l10n", |
101 "-ui/base/resource", | 101 "-ui/base/resource", |
102 # This file isn't related to grd, so it's fine. | 102 # This file isn't related to grd, so it's fine. |
103 "+ui/base/l10n/l10n_util_win.h", | 103 "+ui/base/l10n/l10n_util_win.h", |
104 | 104 |
105 # Content shouldn't depend on views. While we technically don't need this | 105 # Content shouldn't depend on views. While we technically don't need this |
106 # line, since the top level DEPS doesn't allow it, we add it to make this | 106 # line, since the top level DEPS doesn't allow it, we add it to make this |
107 # explicit. | 107 # explicit. |
108 "-ui/views", | 108 "-ui/views", |
109 | 109 |
110 "+webkit", | 110 "+webkit", |
111 | 111 |
112 # For generated JNI includes. | 112 # For generated JNI includes. |
113 "+jni", | 113 "+jni", |
114 ] | 114 ] |
OLD | NEW |