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/content_settings/core/common", |
20 "+components/error_page", | 20 "+components/error_page", |
21 "+components/printing", | |
Lei Zhang
2015/01/09 22:02:42
Some of the other components rules in this file ar
dgn
2015/01/12 20:22:39
I restored this file and just added components/pri
Lei Zhang
2015/01/12 21:24:20
What I meant was:
- Put +components/printing/comm
| |
21 "+components/url_fixer", | 22 "+components/url_fixer", |
22 "+components/variations", | 23 "+components/variations", |
23 "+content/public/common", | 24 "+content/public/common", |
24 "+content/public/test", | 25 "+content/public/test", |
25 "+mojo/common", | 26 "+mojo/common", |
26 "+mojo/public", | 27 "+mojo/public", |
27 | 28 |
28 # 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. |
29 "-webkit", | 30 "-webkit", |
30 "-tools", | 31 "-tools", |
31 | 32 |
32 "-crypto/third_party", | 33 "-crypto/third_party", |
33 | 34 |
34 # Allow inclusion of WebKit API files. | 35 # Allow inclusion of WebKit API files. |
35 "+third_party/WebKit/public/platform", | 36 "+third_party/WebKit/public/platform", |
36 "+third_party/WebKit/public/web", | 37 "+third_party/WebKit/public/web", |
37 | 38 |
38 # Allow inclusion of third-party code: | 39 # Allow inclusion of third-party code: |
39 "+third_party/hunspell", | 40 "+third_party/hunspell", |
40 "+third_party/libxml", | 41 "+third_party/libxml", |
41 "+third_party/skia", | 42 "+third_party/skia", |
42 | 43 |
43 "+ui", | 44 "+ui", |
44 ] | 45 ] |
OLD | NEW |