| OLD | NEW |
| 1 # Do NOT add chrome to the list below. We shouldn't be including files | 1 # Do NOT add chrome to the list below. We shouldn't be including files |
| 2 # from src/chrome in src/content. Also, we may only depend on files in | 2 # from src/chrome in src/content. Also, we may only depend on files in |
| 3 # src/components that are shared with the mojo html_viewer. | 3 # src/components that are shared with the mojo html_viewer. |
| 4 include_rules = [ | 4 include_rules = [ |
| 5 # The subdirectories in content/ will manually allow their own include | 5 # The subdirectories in content/ will manually allow their own include |
| 6 # directories in content/ so we disallow all of them. | 6 # directories in content/ so we disallow all of them. |
| 7 "-content", | 7 "-content", |
| 8 "+content/app/resources/grit/content_resources.h", | 8 "+content/app/resources/grit/content_resources.h", |
| 9 "+content/common", | 9 "+content/common", |
| 10 "+content/grit", | 10 "+content/grit", |
| 11 "+content/public/common", | 11 "+content/public/common", |
| 12 "+content/public/test", | 12 "+content/public/test", |
| 13 "+content/shell", # for content_browsertests | 13 "+content/shell", # for content_browsertests |
| 14 "+content/test", | 14 "+content/test", |
| 15 | 15 |
| 16 # content isn't tied to prefs so that other embedders are able to pick | |
| 17 # different ways of storing their preferences. Also, this is to avoid prefs | |
| 18 # being used as a parallel API to the Content API. | |
| 19 "-base/prefs", | |
| 20 | |
| 21 "+blink", | 16 "+blink", |
| 22 | 17 |
| 23 "+cc", | 18 "+cc", |
| 24 "-cc/blink", | 19 "-cc/blink", |
| 25 # If you want to use any of these files, move them to src/base first. | 20 # If you want to use any of these files, move them to src/base first. |
| 26 "-cc/base/scoped_ptr_algorithm.h", | 21 "-cc/base/scoped_ptr_algorithm.h", |
| 27 "-cc/base/scoped_ptr_deque.h", | 22 "-cc/base/scoped_ptr_deque.h", |
| 28 "-cc/base/scoped_ptr_vector.h", | 23 "-cc/base/scoped_ptr_vector.h", |
| 29 | 24 |
| 30 "+crypto", | 25 "+crypto", |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 # line, since the top level DEPS doesn't allow it, we add it to make this | 105 # line, since the top level DEPS doesn't allow it, we add it to make this |
| 111 # explicit. | 106 # explicit. |
| 112 "-ui/views", | 107 "-ui/views", |
| 113 | 108 |
| 114 "+storage/browser", | 109 "+storage/browser", |
| 115 "+storage/common", | 110 "+storage/common", |
| 116 | 111 |
| 117 # For generated JNI includes. | 112 # For generated JNI includes. |
| 118 "+jni", | 113 "+jni", |
| 119 ] | 114 ] |
| OLD | NEW |