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