| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 "+third_party/WebKit/Source/WebKit/chromium", | 50 "+third_party/WebKit/Source/WebKit/chromium", |
| 51 | 51 |
| 52 "+ui/android", | 52 "+ui/android", |
| 53 # Aura is analogous to Win32 or a Gtk, so it is allowed. | 53 # Aura is analogous to Win32 or a Gtk, so it is allowed. |
| 54 "+ui/aura", | 54 "+ui/aura", |
| 55 "+ui/base", | 55 "+ui/base", |
| 56 "+ui/compositor", | 56 "+ui/compositor", |
| 57 "+ui/gfx", | 57 "+ui/gfx", |
| 58 "+ui/gl", | 58 "+ui/gl", |
| 59 "+ui/native_theme", | 59 "+ui/native_theme", |
| 60 "+ui/snapshot", |
| 60 "+ui/surface", | 61 "+ui/surface", |
| 61 # Content knows about grd files, but the specifics of how to get a resource | 62 # Content knows about grd files, but the specifics of how to get a resource |
| 62 # given its id is left to the embedder. | 63 # given its id is left to the embedder. |
| 63 "-ui/base/l10n", | 64 "-ui/base/l10n", |
| 64 "-ui/base/resource", | 65 "-ui/base/resource", |
| 65 # This file isn't related to grd, so it's fine. | 66 # This file isn't related to grd, so it's fine. |
| 66 "+ui/base/l10n/l10n_util_win.h", | 67 "+ui/base/l10n/l10n_util_win.h", |
| 67 | 68 |
| 68 # Content shouldn't depend on views. While we technically don't need this | 69 # Content shouldn't depend on views. While we technically don't need this |
| 69 # line, since the top level DEPS doesn't allow it, we add it to make this | 70 # line, since the top level DEPS doesn't allow it, we add it to make this |
| 70 # explicit. | 71 # explicit. |
| 71 "-ui/views", | 72 "-ui/views", |
| 72 | 73 |
| 73 "+webkit", | 74 "+webkit", |
| 74 "-webkit/dom_storage", | 75 "-webkit/dom_storage", |
| 75 "+webkit/dom_storage/dom_storage_types.h", | 76 "+webkit/dom_storage/dom_storage_types.h", |
| 76 | 77 |
| 77 # For generated JNI includes. | 78 # For generated JNI includes. |
| 78 "+jni", | 79 "+jni", |
| 79 ] | 80 ] |
| OLD | NEW |