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 # Until we move most of our testing infrastructure in a way that content can | 6 # Until we move most of our testing infrastructure in a way that content can |
7 # make use of it. | 7 # make use of it. |
8 "+chrome/test", | 8 "+chrome/test", |
9 | 9 |
10 # The following directories have been refactored, so no new dependencies | 10 # The following directories have been refactored, so no new dependencies |
11 # should be added from these directories. | 11 # should be added from these directories. |
12 "-chrome/browser/printing", | 12 "-chrome/browser/printing", |
13 "-chrome/browser/extensions", | 13 "-chrome/browser/extensions", |
14 "-chrome/common/extensions", | 14 "-chrome/common/extensions", |
15 "-chrome/renderer/extensions", | 15 "-chrome/renderer/extensions", |
16 | 16 |
17 # The subdirectories in content/ will manually allow their own include | 17 # The subdirectories in content/ will manually allow their own include |
18 # directories in content/ so we disallow all of them. | 18 # directories in content/ so we disallow all of them. |
19 "-content", | 19 "-content", |
20 "+content/common", | 20 "+content/common", |
| 21 "+content/test", |
21 | 22 |
22 "+grit", | 23 "+grit", |
23 "+gpu", | 24 "+gpu", |
24 "+net", | 25 "+net", |
25 "+ppapi", | 26 "+ppapi", |
26 "+printing", | 27 "+printing", |
27 "+sandbox", | 28 "+sandbox", |
28 "+skia", | 29 "+skia", |
29 | 30 |
30 # Don't allow inclusion of these other libs we shouldn't be calling directly. | 31 # Don't allow inclusion of these other libs we shouldn't be calling directly. |
31 "-v8", | 32 "-v8", |
32 "-tools", | 33 "-tools", |
33 | 34 |
34 "+third_party/gpsd", | 35 "+third_party/gpsd", |
35 "+third_party/npapi/bindings", | 36 "+third_party/npapi/bindings", |
36 "+third_party/sqlite", | 37 "+third_party/sqlite", |
37 # Allow inclusion of WebKit API files. | 38 # Allow inclusion of WebKit API files. |
38 "+third_party/WebKit/Source/WebKit/chromium", | 39 "+third_party/WebKit/Source/WebKit/chromium", |
39 | 40 |
40 "+ui/base", | 41 "+ui/base", |
41 "+ui/gfx", | 42 "+ui/gfx", |
42 # Content knows about grd files, but the specifics of how to get a resource | 43 # Content knows about grd files, but the specifics of how to get a resource |
43 # given its id is left to the embedder. | 44 # given its id is left to the embedder. |
44 "-ui/base/l10n", | 45 "-ui/base/l10n", |
45 "-ui/base/resource", | 46 "-ui/base/resource", |
46 | 47 |
47 "+views", | 48 "+views", |
48 "+webkit", | 49 "+webkit", |
49 ] | 50 ] |
OLD | NEW |