| 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 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 "+third_party/tcmalloc", | 39 "+third_party/tcmalloc", |
| 40 # Allow inclusion of WebKit API files. | 40 # Allow inclusion of WebKit API files. |
| 41 "+third_party/WebKit/Source/WebKit/chromium", | 41 "+third_party/WebKit/Source/WebKit/chromium", |
| 42 | 42 |
| 43 "+ui/base", | 43 "+ui/base", |
| 44 "+ui/gfx", | 44 "+ui/gfx", |
| 45 # Content knows about grd files, but the specifics of how to get a resource | 45 # Content knows about grd files, but the specifics of how to get a resource |
| 46 # given its id is left to the embedder. | 46 # given its id is left to the embedder. |
| 47 "-ui/base/l10n", | 47 "-ui/base/l10n", |
| 48 "-ui/base/resource", | 48 "-ui/base/resource", |
| 49 # This file isn't related to grd, so it's fine. |
| 50 "+ui/base/l10n/l10n_util_win.h", |
| 49 | 51 |
| 50 "+views", | 52 "+views", |
| 51 "+webkit", | 53 "+webkit", |
| 52 ] | 54 ] |
| OLD | NEW |