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 "-chrome", | 6 "-chrome", |
| 7 # Until we move most of our testing infrastructure in a way that content can | 7 # Until we move most of our testing infrastructure in a way that content can |
| 8 # make use of it. | 8 # make use of it. |
| 9 "+chrome/test", | 9 "+chrome/test", |
| 10 | 10 |
| 11 # The subdirectories in content/ will manually allow their own include | 11 # The subdirectories in content/ will manually allow their own include |
| 12 # directories in content/ so we disallow all of them. | 12 # directories in content/ so we disallow all of them. |
| 13 "-content", | 13 "-content", |
| 14 "+content/common", | 14 "+content/common", |
| 15 "+content/public/common", | 15 "+content/public/common", |
| 16 "+content/test", | 16 "+content/test", |
| 17 | 17 |
| 18 # TODO(ben): remove this | 18 # TODO(ben): remove this |
| 19 "+content/public/browser/native_web_keyboard_event.h", | 19 "+content/public/browser/native_web_keyboard_event.h", |
| 20 | 20 |
| 21 "+dbus", | 21 "+dbus", |
| 22 "+grit", | |
| 23 "+gpu", | 22 "+gpu", |
| 24 "+net", | 23 "+net", |
| 25 "+ppapi", | 24 "+ppapi", |
| 26 "+printing", | 25 "+printing", |
| 27 "+sandbox", | 26 "+sandbox", |
| 28 "+skia", | 27 "+skia", |
| 29 | 28 |
| 30 # Don't allow inclusion of these other libs we shouldn't be calling directly. | 29 # Don't allow inclusion of these other libs we shouldn't be calling directly. |
| 31 "-v8", | 30 "-v8", |
| 32 "-tools", | 31 "-tools", |
| (...skipping 19 matching lines...) Expand all Loading... | |
| 52 "+ui/base/l10n/l10n_util_win.h", | 51 "+ui/base/l10n/l10n_util_win.h", |
| 53 | 52 |
| 54 # Content shouldn't depend on views. While we technically don't need this | 53 # Content shouldn't depend on views. While we technically don't need this |
| 55 # line, since the top level DEPS doesn't allow it, we add it to make this | 54 # line, since the top level DEPS doesn't allow it, we add it to make this |
| 56 # explicit. | 55 # explicit. |
| 57 "-views", | 56 "-views", |
| 58 | 57 |
| 59 # Aura Shell consumes views, so it too is banned. | 58 # Aura Shell consumes views, so it too is banned. |
| 60 "-ui/aura_shell", | 59 "-ui/aura_shell", |
| 61 | 60 |
| 61 # Don't allow inclusion of generated resources files. | |
| 62 "-grit", | |
|
jam
2011/11/23 20:29:17
can we just allow the ones that content can includ
jochen (gone - plz use gerrit)
2011/11/23 21:51:00
Done.
| |
| 63 | |
| 62 "+webkit", | 64 "+webkit", |
| 63 ] | 65 ] |
| OLD | NEW |