OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 "+crypto", | 2 "+crypto", |
3 "+gpu", | 3 "+gpu", |
4 "+net", | 4 "+net", |
5 "+printing", | 5 "+printing", |
6 "+sql", | 6 "+sql", |
7 # Browser, renderer, common and tests access V8 for various purposes. | 7 # Browser, renderer, common and tests access V8 for various purposes. |
8 "-v8", | 8 "-v8", |
9 "+v8/include", | 9 "+v8/include", |
10 | 10 |
11 # Limit what we include from nacl. | 11 # Limit what we include from nacl. |
12 "-native_client", | 12 "-native_client", |
13 | 13 |
14 # The subdirectories in chrome/ will manually allow their own include | 14 # The subdirectories in chrome/ will manually allow their own include |
15 # directories in chrome/ so we disallow all of them. | 15 # directories in chrome/ so we disallow all of them. |
16 "-chrome", | 16 "-chrome", |
17 "+chrome/common", | 17 "+chrome/common", |
18 "+chrome/test", | 18 "+chrome/test", |
| 19 "+components/content_settings/core/common", |
19 "+components/url_fixer", | 20 "+components/url_fixer", |
20 "+components/variations", | 21 "+components/variations", |
21 "+content/public/common", | 22 "+content/public/common", |
22 "+content/public/test", | 23 "+content/public/test", |
23 "+mojo/common", | 24 "+mojo/common", |
24 "+mojo/public", | 25 "+mojo/public", |
25 | 26 |
26 # Don't allow inclusion of these other libs we shouldn't be calling directly. | 27 # Don't allow inclusion of these other libs we shouldn't be calling directly. |
27 "-webkit", | 28 "-webkit", |
28 "-tools", | 29 "-tools", |
29 | 30 |
30 "-crypto/third_party", | 31 "-crypto/third_party", |
31 | 32 |
32 # Allow inclusion of WebKit API files. | 33 # Allow inclusion of WebKit API files. |
33 "+third_party/WebKit/public/platform", | 34 "+third_party/WebKit/public/platform", |
34 "+third_party/WebKit/public/web", | 35 "+third_party/WebKit/public/web", |
35 | 36 |
36 # Allow inclusion of third-party code: | 37 # Allow inclusion of third-party code: |
37 "+third_party/hunspell", | 38 "+third_party/hunspell", |
38 "+third_party/libxml", | 39 "+third_party/libxml", |
39 "+third_party/skia", | 40 "+third_party/skia", |
40 | 41 |
41 "+ui", | 42 "+ui", |
42 ] | 43 ] |
OLD | NEW |