| 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. | 2 # from src/chrome 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/app/resources/grit/content_resources.h", |
| 8 "+content/common", | 8 "+content/common", |
| 9 "+content/grit", | 9 "+content/grit", |
| 10 "+content/public/common", | 10 "+content/public/common", |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 "+ui/accessibility", | 79 "+ui/accessibility", |
| 80 "+ui/android", | 80 "+ui/android", |
| 81 # Aura is analogous to Win32 or a Gtk, so it is allowed. | 81 # Aura is analogous to Win32 or a Gtk, so it is allowed. |
| 82 "+ui/aura", | 82 "+ui/aura", |
| 83 "+ui/base", | 83 "+ui/base", |
| 84 "+ui/compositor", | 84 "+ui/compositor", |
| 85 "+ui/display", | 85 "+ui/display", |
| 86 "+ui/events", | 86 "+ui/events", |
| 87 "+ui/gfx", | 87 "+ui/gfx", |
| 88 "+ui/gl", | 88 "+ui/gl", |
| 89 "+ui/latency", |
| 89 "+ui/native_theme", | 90 "+ui/native_theme", |
| 90 "+ui/ozone/public", | 91 "+ui/ozone/public", |
| 91 "+ui/resources/grit/ui_resources.h", | 92 "+ui/resources/grit/ui_resources.h", |
| 92 "+ui/resources/grit/webui_resources.h", | 93 "+ui/resources/grit/webui_resources.h", |
| 93 "+ui/resources/grit/webui_resources_map.h", | 94 "+ui/resources/grit/webui_resources_map.h", |
| 94 "+ui/shell_dialogs", | 95 "+ui/shell_dialogs", |
| 95 "+ui/snapshot", | 96 "+ui/snapshot", |
| 96 "+ui/strings/grit/ui_strings.h", | 97 "+ui/strings/grit/ui_strings.h", |
| 97 "+ui/surface", | 98 "+ui/surface", |
| 98 "+ui/touch_selection", | 99 "+ui/touch_selection", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 117 "+jni", | 118 "+jni", |
| 118 ] | 119 ] |
| 119 | 120 |
| 120 # content -> content/shell dependency is not allowed, except for browser tests. | 121 # content -> content/shell dependency is not allowed, except for browser tests. |
| 121 specific_include_rules = { | 122 specific_include_rules = { |
| 122 ".*_browsertest[a-z_]*\.(cc|h)": [ | 123 ".*_browsertest[a-z_]*\.(cc|h)": [ |
| 123 "+content/shell/browser", | 124 "+content/shell/browser", |
| 124 "+content/shell/common", | 125 "+content/shell/common", |
| 125 ], | 126 ], |
| 126 } | 127 } |
| OLD | NEW |