| OLD | NEW |
| 1 # Do NOT add chrome to the list below. We shouldn't be including files from | 1 # Do NOT add chrome to the list below. We shouldn't be including files from |
| 2 # src/chrome in src/content. | 2 # src/chrome in src/content. |
| 3 include_rules = [ | 3 include_rules = [ |
| 4 "+cc", | 4 "+cc", |
| 5 | 5 |
| 6 "+crypto", | 6 "+crypto", |
| 7 | 7 |
| 8 # The subdirectories in content/ will manually allow their own include | 8 # The subdirectories in content/ will manually allow their own include |
| 9 # directories in content/ so we disallow all of them. | 9 # directories in content/ so we disallow all of them. |
| 10 "-content", | 10 "-content", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 "+third_party/WebKit/Source/WebKit/chromium", | 60 "+third_party/WebKit/Source/WebKit/chromium", |
| 61 | 61 |
| 62 "+ui/android", | 62 "+ui/android", |
| 63 # Aura is analogous to Win32 or a Gtk, so it is allowed. | 63 # Aura is analogous to Win32 or a Gtk, so it is allowed. |
| 64 "+ui/aura", | 64 "+ui/aura", |
| 65 "+ui/base", | 65 "+ui/base", |
| 66 "+ui/compositor", | 66 "+ui/compositor", |
| 67 "+ui/gfx", | 67 "+ui/gfx", |
| 68 "+ui/gl", | 68 "+ui/gl", |
| 69 "+ui/native_theme", | 69 "+ui/native_theme", |
| 70 "+ui/shell_dialogs", |
| 70 "+ui/snapshot", | 71 "+ui/snapshot", |
| 71 "+ui/surface", | 72 "+ui/surface", |
| 72 # Content knows about grd files, but the specifics of how to get a resource | 73 # Content knows about grd files, but the specifics of how to get a resource |
| 73 # given its id is left to the embedder. | 74 # given its id is left to the embedder. |
| 74 "-ui/base/l10n", | 75 "-ui/base/l10n", |
| 75 "-ui/base/resource", | 76 "-ui/base/resource", |
| 76 # This file isn't related to grd, so it's fine. | 77 # This file isn't related to grd, so it's fine. |
| 77 "+ui/base/l10n/l10n_util_win.h", | 78 "+ui/base/l10n/l10n_util_win.h", |
| 78 | 79 |
| 79 # Content shouldn't depend on views. While we technically don't need this | 80 # Content shouldn't depend on views. While we technically don't need this |
| 80 # line, since the top level DEPS doesn't allow it, we add it to make this | 81 # line, since the top level DEPS doesn't allow it, we add it to make this |
| 81 # explicit. | 82 # explicit. |
| 82 "-ui/views", | 83 "-ui/views", |
| 83 | 84 |
| 84 "+webkit", | 85 "+webkit", |
| 85 "-webkit/dom_storage", | 86 "-webkit/dom_storage", |
| 86 "+webkit/dom_storage/dom_storage_types.h", | 87 "+webkit/dom_storage/dom_storage_types.h", |
| 87 | 88 |
| 88 # For generated JNI includes. | 89 # For generated JNI includes. |
| 89 "+jni", | 90 "+jni", |
| 90 ] | 91 ] |
| OLD | NEW |