Chromium Code Reviews| 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 "+crypto", | 4 "+crypto", |
| 5 | 5 |
| 6 # The subdirectories in content/ will manually allow their own include | 6 # The subdirectories in content/ will manually allow their own include |
| 7 # directories in content/ so we disallow all of them. | 7 # directories in content/ so we disallow all of them. |
| 8 "-content", | 8 "-content", |
| 9 "+content/common", | 9 "+content/common", |
| 10 "+content/public/common", | 10 "+content/public/common", |
| (...skipping 29 matching lines...) Expand all Loading... | |
| 40 "+third_party/npapi/bindings", | 40 "+third_party/npapi/bindings", |
| 41 "+third_party/skia", | 41 "+third_party/skia", |
| 42 "+third_party/sqlite", | 42 "+third_party/sqlite", |
| 43 "+third_party/tcmalloc", | 43 "+third_party/tcmalloc", |
| 44 "+third_party/khronos", | 44 "+third_party/khronos", |
| 45 "+third_party/webrtc", | 45 "+third_party/webrtc", |
| 46 "+third_party/WebKit/Source/Platform/chromium", | 46 "+third_party/WebKit/Source/Platform/chromium", |
| 47 "+third_party/WebKit/Source/WebKit/chromium", | 47 "+third_party/WebKit/Source/WebKit/chromium", |
| 48 | 48 |
| 49 # Aura is analogous to Win32 or a Gtk, so it is allowed. | 49 # Aura is analogous to Win32 or a Gtk, so it is allowed. |
| 50 "+ui/android", | |
|
Yaron
2012/09/12 19:14:45
You probably want this above the comment.
aurimas (slooooooooow)
2012/09/13 15:37:15
Done.
| |
| 50 "+ui/aura", | 51 "+ui/aura", |
| 51 "+ui/base", | 52 "+ui/base", |
| 52 "+ui/compositor", | 53 "+ui/compositor", |
| 53 "+ui/gfx", | 54 "+ui/gfx", |
| 54 "+ui/gl", | 55 "+ui/gl", |
| 55 "+ui/surface", | 56 "+ui/surface", |
| 56 # Content knows about grd files, but the specifics of how to get a resource | 57 # Content knows about grd files, but the specifics of how to get a resource |
| 57 # given its id is left to the embedder. | 58 # given its id is left to the embedder. |
| 58 "-ui/base/l10n", | 59 "-ui/base/l10n", |
| 59 "-ui/base/resource", | 60 "-ui/base/resource", |
| 60 # This file isn't related to grd, so it's fine. | 61 # This file isn't related to grd, so it's fine. |
| 61 "+ui/base/l10n/l10n_util_win.h", | 62 "+ui/base/l10n/l10n_util_win.h", |
| 62 | 63 |
| 63 # Content shouldn't depend on views. While we technically don't need this | 64 # Content shouldn't depend on views. While we technically don't need this |
| 64 # line, since the top level DEPS doesn't allow it, we add it to make this | 65 # line, since the top level DEPS doesn't allow it, we add it to make this |
| 65 # explicit. | 66 # explicit. |
| 66 "-views", | 67 "-views", |
| 67 | 68 |
| 68 # Aura Shell consumes views, so it too is banned. | 69 # Aura Shell consumes views, so it too is banned. |
| 69 "-ui/aura_shell", | 70 "-ui/aura_shell", |
| 70 | 71 |
| 71 "+webkit", | 72 "+webkit", |
| 72 | 73 |
| 73 # For generated JNI includes | 74 # For generated JNI includes |
| 74 "+jni", | 75 "+jni", |
| 75 ] | 76 ] |
| OLD | NEW |