OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 "+app", | 2 "+app", |
3 "+net", | 3 "+net", |
4 "+printing", | 4 "+printing", |
5 "+views", | 5 "+views", |
6 | 6 |
7 # The subdirectories in chrome/ will manually allow their own include | 7 # The subdirectories in chrome/ will manually allow their own include |
8 # directories in chrome/ so we disallow all of them. | 8 # directories in chrome/ so we disallow all of them. |
9 "-chrome", | 9 "-chrome", |
10 "+chrome/common", | 10 "+chrome/common", |
11 "+chrome/test", | 11 "+chrome/test", |
12 | 12 |
13 # Don't allow inclusion of these other libs we shouldn't be calling directly. | 13 # Don't allow inclusion of these other libs we shouldn't be calling directly. |
14 "-v8", | 14 "-v8", |
15 "-webkit", | 15 "-webkit", |
16 "-tools", | 16 "-tools", |
17 | 17 |
18 # Allow inclusion of WebKit API files. | 18 # Allow inclusion of WebKit API files. |
19 "+webkit/api", | 19 "+third_party/WebKit/WebKit/chromium", |
20 | 20 |
21 # Allow inclusion of the appcache library. | 21 # Allow inclusion of the appcache library. |
22 "+webkit/appcache", | 22 "+webkit/appcache", |
23 | 23 |
24 # Allow inclusion of the database library. | 24 # Allow inclusion of the database library. |
25 "+webkit/database", | 25 "+webkit/database", |
26 | 26 |
27 # Allow inclusion of Mozilla interface headers. | 27 # Allow inclusion of Mozilla interface headers. |
28 "+third_party/mozilla", | 28 "+third_party/mozilla", |
29 | 29 |
30 # Allow inclusion of tcmalloc header. | 30 # Allow inclusion of tcmalloc header. |
31 "+third_party/tcmalloc", | 31 "+third_party/tcmalloc", |
32 | 32 |
33 # Allow usage of Google Toolbox for Mac. | 33 # Allow usage of Google Toolbox for Mac. |
34 "+third_party/GTM", | 34 "+third_party/GTM", |
35 | 35 |
36 # Allow usage of the libjingle library. | 36 # Allow usage of the libjingle library. |
37 "+third_party/libjingle", | 37 "+third_party/libjingle", |
38 | 38 |
39 # Our Skia extensions. | 39 # Our Skia extensions. |
40 "+skia/ext", | 40 "+skia/ext", |
41 | 41 |
42 # On Linux, we include some breakpad headers | 42 # On Linux, we include some breakpad headers |
43 "+breakpad/linux", | 43 "+breakpad/linux", |
44 | 44 |
45 # On Linux, the zygote needs to access sandbox headers | 45 # On Linux, the zygote needs to access sandbox headers |
46 "+sandbox/linux" | 46 "+sandbox/linux" |
47 ] | 47 ] |
OLD | NEW |