| 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", |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 "+ui/accessibility", | 74 "+ui/accessibility", |
| 75 "+ui/android", | 75 "+ui/android", |
| 76 # Aura is analogous to Win32 or a Gtk, so it is allowed. | 76 # Aura is analogous to Win32 or a Gtk, so it is allowed. |
| 77 "+ui/aura", | 77 "+ui/aura", |
| 78 "+ui/base", | 78 "+ui/base", |
| 79 "+ui/compositor", | 79 "+ui/compositor", |
| 80 "+ui/display", | 80 "+ui/display", |
| 81 "+ui/events", | 81 "+ui/events", |
| 82 "+ui/gfx", | 82 "+ui/gfx", |
| 83 "+ui/gl", | 83 "+ui/gl", |
| 84 "+ui/latency_info", | |
| 85 "+ui/native_theme", | 84 "+ui/native_theme", |
| 86 "+ui/ozone/public", | 85 "+ui/ozone/public", |
| 87 "+ui/resources/grit/ui_resources.h", | 86 "+ui/resources/grit/ui_resources.h", |
| 88 "+ui/resources/grit/webui_resources.h", | 87 "+ui/resources/grit/webui_resources.h", |
| 89 "+ui/resources/grit/webui_resources_map.h", | 88 "+ui/resources/grit/webui_resources_map.h", |
| 90 "+ui/shell_dialogs", | 89 "+ui/shell_dialogs", |
| 91 "+ui/snapshot", | 90 "+ui/snapshot", |
| 92 "+ui/strings/grit/ui_strings.h", | 91 "+ui/strings/grit/ui_strings.h", |
| 93 "+ui/surface", | 92 "+ui/surface", |
| 94 "+ui/touch_selection", | 93 "+ui/touch_selection", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 114 ] | 113 ] |
| 115 | 114 |
| 116 # content -> content/shell dependency is not allowed, except for browser tests. | 115 # content -> content/shell dependency is not allowed, except for browser tests. |
| 117 specific_include_rules = { | 116 specific_include_rules = { |
| 118 ".*_browsertest[a-z_]*\.(cc|h)": [ | 117 ".*_browsertest[a-z_]*\.(cc|h)": [ |
| 119 "+content/shell/browser", | 118 "+content/shell/browser", |
| 120 "+content/shell/common", | 119 "+content/shell/common", |
| 121 ], | 120 ], |
| 122 } | 121 } |
| 123 | 122 |
| OLD | NEW |