Chromium Code Reviews| 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/test", | 13 "+content/test", |
| 14 | 14 |
| 15 "+blink", | 15 "+blink", |
| 16 | 16 |
| 17 "+cc", | 17 "+cc", |
| 18 "-cc/blink", | 18 "-cc/blink", |
| 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_strings.h", | 26 "+grit/content_strings.h", |
| 27 | 27 |
| 28 "+dbus", | 28 "+dbus", |
| 29 "+gpu", | 29 "+gpu", |
| 30 "+media", | |
|
jam
2016/04/28 15:28:49
btw there are many +media lines in DEPS files unde
| |
| 30 "+mojo/common", | 31 "+mojo/common", |
| 31 "+mojo/edk/embedder", | 32 "+mojo/edk/embedder", |
| 32 "+mojo/edk/js", | 33 "+mojo/edk/js", |
| 33 "+mojo/edk/test", | 34 "+mojo/edk/test", |
| 34 "+mojo/message_pump", | 35 "+mojo/message_pump", |
| 35 "+mojo/public", | 36 "+mojo/public", |
| 36 "+net", | 37 "+net", |
| 37 "+ppapi", | 38 "+ppapi", |
| 38 "+printing", | 39 "+printing", |
| 39 "+sandbox", | 40 "+sandbox", |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 112 "+jni", | 113 "+jni", |
| 113 ] | 114 ] |
| 114 | 115 |
| 115 # content -> content/shell dependency is not allowed, except for browser tests. | 116 # content -> content/shell dependency is not allowed, except for browser tests. |
| 116 specific_include_rules = { | 117 specific_include_rules = { |
| 117 ".*_browsertest[a-z_]*\.(cc|h)": [ | 118 ".*_browsertest[a-z_]*\.(cc|h)": [ |
| 118 "+content/shell/browser", | 119 "+content/shell/browser", |
| 119 "+content/shell/common", | 120 "+content/shell/common", |
| 120 ], | 121 ], |
| 121 } | 122 } |
| 122 | |
| OLD | NEW |