| 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/common", | 7 "+content/common", |
| 8 "+content/public/common", | 8 "+content/public/common", |
| 9 "+content/public/test", | 9 "+content/public/test", |
| 10 "+content/shell", # for content_browsertests | 10 "+content/shell", # for content_browsertests |
| 11 "+content/test", | 11 "+content/test", |
| 12 | 12 |
| 13 # content isn't tied to prefs so that other embedders are able to pick | 13 # content isn't tied to prefs so that other embedders are able to pick |
| 14 # different ways of storing their preferences. Also, this is to avoid prefs | 14 # different ways of storing their preferences. Also, this is to avoid prefs |
| 15 # being used as a parallel API to the Content API. | 15 # being used as a parallel API to the Content API. |
| 16 "-base/prefs", | 16 "-base/prefs", |
| 17 | 17 |
| 18 "+cc", | 18 "+cc", |
| 19 # If you want to use any of these files, move them to src/base first. | 19 # If you want to use any of these files, move them to src/base first. |
| 20 "-cc/base/scoped_ptr_algorithm.h", | 20 "-cc/base/scoped_ptr_algorithm.h", |
| 21 "-cc/base/scoped_ptr_deque.h", | 21 "-cc/base/scoped_ptr_deque.h", |
| 22 "-cc/base/scoped_ptr_vector.h", | 22 "-cc/base/scoped_ptr_vector.h", |
| 23 | 23 |
| 24 "+crypto", | 24 "+crypto", |
| 25 "+grit/blink_resources.h", | 25 "+grit/blink_resources.h", |
| 26 "+grit/content_resources.h", | 26 "+grit/content_resources.h", |
| 27 "+grit/content_strings.h", |
| 27 "+grit/ui_resources.h", | 28 "+grit/ui_resources.h", |
| 28 "+grit/ui_strings.h", | 29 "+grit/ui_strings.h", |
| 29 "+grit/webkit_resources.h", | 30 "+grit/webkit_resources.h", |
| 30 "+grit/webkit_strings.h", | |
| 31 "+grit/webui_resources.h", | 31 "+grit/webui_resources.h", |
| 32 "+grit/webui_resources_map.h", | 32 "+grit/webui_resources_map.h", |
| 33 | 33 |
| 34 "+dbus", | 34 "+dbus", |
| 35 "+gpu", | 35 "+gpu", |
| 36 "+mojo/public", | 36 "+mojo/public", |
| 37 "+mojo/bindings/js", | 37 "+mojo/bindings/js", |
| 38 "+mojo/common", | 38 "+mojo/common", |
| 39 "+mojo/embedder", | 39 "+mojo/embedder", |
| 40 "+mojo/service_manager", | 40 "+mojo/service_manager", |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 # Content shouldn't depend on views. While we technically don't need this | 102 # Content shouldn't depend on views. While we technically don't need this |
| 103 # line, since the top level DEPS doesn't allow it, we add it to make this | 103 # line, since the top level DEPS doesn't allow it, we add it to make this |
| 104 # explicit. | 104 # explicit. |
| 105 "-ui/views", | 105 "-ui/views", |
| 106 | 106 |
| 107 "+webkit", | 107 "+webkit", |
| 108 | 108 |
| 109 # For generated JNI includes. | 109 # For generated JNI includes. |
| 110 "+jni", | 110 "+jni", |
| 111 ] | 111 ] |
| OLD | NEW |