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/common", | 8 "+content/common", |
8 "+content/grit", | 9 "+content/grit", |
9 "+content/public/common", | 10 "+content/public/common", |
10 "+content/public/test", | 11 "+content/public/test", |
11 "+content/shell", # for content_browsertests | 12 "+content/shell", # for content_browsertests |
12 "+content/test", | 13 "+content/test", |
13 | 14 |
14 # content isn't tied to prefs so that other embedders are able to pick | 15 # content isn't tied to prefs so that other embedders are able to pick |
15 # different ways of storing their preferences. Also, this is to avoid prefs | 16 # different ways of storing their preferences. Also, this is to avoid prefs |
16 # being used as a parallel API to the Content API. | 17 # being used as a parallel API to the Content API. |
17 "-base/prefs", | 18 "-base/prefs", |
18 | 19 |
19 "+blink", | 20 "+blink", |
20 | 21 |
21 "+cc", | 22 "+cc", |
22 "-cc/blink", | 23 "-cc/blink", |
23 # 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. |
24 "-cc/base/scoped_ptr_algorithm.h", | 25 "-cc/base/scoped_ptr_algorithm.h", |
25 "-cc/base/scoped_ptr_deque.h", | 26 "-cc/base/scoped_ptr_deque.h", |
26 "-cc/base/scoped_ptr_vector.h", | 27 "-cc/base/scoped_ptr_vector.h", |
27 | 28 |
28 "+crypto", | 29 "+crypto", |
29 "+grit/blink_resources.h", | 30 "+grit/blink_resources.h", |
30 "+grit/content_strings.h", | 31 "+grit/content_strings.h", |
31 "+grit/ui_strings.h", | 32 "+grit/ui_strings.h", |
32 "+grit/webkit_resources.h", | |
33 "+grit/webui_resources.h", | 33 "+grit/webui_resources.h", |
34 "+grit/webui_resources_map.h", | 34 "+grit/webui_resources_map.h", |
35 | 35 |
36 "+dbus", | 36 "+dbus", |
37 "+gpu", | 37 "+gpu", |
38 "+mojo/application_manager", | 38 "+mojo/application_manager", |
39 "+mojo/bindings/js", | 39 "+mojo/bindings/js", |
40 "+mojo/common", | 40 "+mojo/common", |
41 "+mojo/embedder", | 41 "+mojo/embedder", |
42 "+mojo/public", | 42 "+mojo/public", |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 |