| 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/port/common", | 8 "+content/port/common", |
| 9 "+content/public/common", | 9 "+content/public/common", |
| 10 "+content/public/test", | 10 "+content/public/test", |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "+ui/aura", | 76 "+ui/aura", |
| 77 "+ui/base", | 77 "+ui/base", |
| 78 "+ui/compositor", | 78 "+ui/compositor", |
| 79 "+ui/events", | 79 "+ui/events", |
| 80 "+ui/gfx", | 80 "+ui/gfx", |
| 81 "+ui/gl", | 81 "+ui/gl", |
| 82 "+ui/native_theme", | 82 "+ui/native_theme", |
| 83 "+ui/shell_dialogs", | 83 "+ui/shell_dialogs", |
| 84 "+ui/snapshot", | 84 "+ui/snapshot", |
| 85 "+ui/surface", | 85 "+ui/surface", |
| 86 "+ui/wm/public", |
| 86 # Content knows about grd files, but the specifics of how to get a resource | 87 # Content knows about grd files, but the specifics of how to get a resource |
| 87 # given its id is left to the embedder. | 88 # given its id is left to the embedder. |
| 88 "-ui/base/l10n", | 89 "-ui/base/l10n", |
| 89 "-ui/base/resource", | 90 "-ui/base/resource", |
| 90 # This file isn't related to grd, so it's fine. | 91 # This file isn't related to grd, so it's fine. |
| 91 "+ui/base/l10n/l10n_util_win.h", | 92 "+ui/base/l10n/l10n_util_win.h", |
| 92 | 93 |
| 93 # Content shouldn't depend on views. While we technically don't need this | 94 # Content shouldn't depend on views. While we technically don't need this |
| 94 # line, since the top level DEPS doesn't allow it, we add it to make this | 95 # line, since the top level DEPS doesn't allow it, we add it to make this |
| 95 # explicit. | 96 # explicit. |
| 96 "-ui/views", | 97 "-ui/views", |
| 97 | 98 |
| 98 "+webkit", | 99 "+webkit", |
| 99 | 100 |
| 100 # For generated JNI includes. | 101 # For generated JNI includes. |
| 101 "+jni", | 102 "+jni", |
| 102 ] | 103 ] |
| OLD | NEW |