OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 "+ash", | 2 "+ash", |
3 "+crypto", | 3 "+crypto", |
4 "+gpu", | 4 "+gpu", |
| 5 "+native_client", |
5 "+net", | 6 "+net", |
6 "+printing", | 7 "+printing", |
7 "+sql", | 8 "+sql", |
8 # Browser, renderer, common and tests access V8 for various purposes. | 9 # Browser, renderer, common and tests access V8 for various purposes. |
9 "-v8", | 10 "-v8", |
10 "+v8/include", | 11 "+v8/include", |
11 | 12 |
12 # The subdirectories in chrome/ will manually allow their own include | 13 # The subdirectories in chrome/ will manually allow their own include |
13 # directories in chrome/ so we disallow all of them. | 14 # directories in chrome/ so we disallow all of them. |
14 "-chrome", | 15 "-chrome", |
15 "+chrome/common", | 16 "+chrome/common", |
16 "+chrome/test", | 17 "+chrome/test", |
17 "-content", | 18 "-content", |
18 # TODO(jam): remove me once chrome only consumes content/common through its | 19 # TODO(jam): remove me once chrome only consumes content/common through its |
19 # public headers. | 20 # public headers. |
20 "+content/common", | 21 "+content/common", |
21 "+content/public/common", | 22 "+content/public/common", |
22 "+content/test", | 23 "+content/test", |
23 | 24 |
24 # TODO(ben): remove this | 25 # TODO(ben): remove this |
25 "+content/public/browser/native_web_keyboard_event.h", | 26 "+content/public/browser/native_web_keyboard_event.h", |
26 | 27 |
27 # Don't allow inclusion of these other libs we shouldn't be calling directly. | 28 # Don't allow inclusion of these other libs we shouldn't be calling directly. |
28 "-webkit", | 29 "-webkit", |
29 "-tools", | 30 "-tools", |
30 | 31 |
31 "-crypto/third_party", | 32 "-crypto/third_party", |
32 | 33 |
33 # Allow inclusion of WebKit API files. | 34 # Allow inclusion of WebKit API files. |
| 35 "+third_party/WebKit/Source/Platform/chromium", |
34 "+third_party/WebKit/Source/WebKit/chromium", | 36 "+third_party/WebKit/Source/WebKit/chromium", |
35 "+webkit/appcache", | 37 "+webkit/appcache", |
36 "+webkit/blob", | 38 "+webkit/blob", |
37 "+webkit/chromeos/fileapi", | 39 "+webkit/chromeos/fileapi", |
38 "+webkit/database", | 40 "+webkit/database", |
39 "+webkit/fileapi", | 41 "+webkit/fileapi", |
40 "+webkit/quota", | 42 "+webkit/quota", |
41 | 43 |
42 # Allow inclusion of third-party code: | 44 # Allow inclusion of third-party code: |
| 45 "+third_party/hunspell", |
43 "+third_party/icon_family", # IconFamily for Mac. | 46 "+third_party/icon_family", # IconFamily for Mac. |
44 "+third_party/mozilla", # Mozilla interface headers. | 47 "+third_party/mozilla", # Mozilla interface headers. |
45 "+third_party/npapi", # NPAPI interface headers. | 48 "+third_party/npapi", # NPAPI interface headers. |
| 49 "+third_party/skia", |
46 "+third_party/tcmalloc", # tcmallo | 50 "+third_party/tcmalloc", # tcmallo |
47 "+third_party/GTM", # Google Toolbox for Mac. | 51 "+third_party/GTM", # Google Toolbox for Mac. |
48 | 52 |
49 "+ui", | 53 "+ui", |
50 ] | 54 ] |
OLD | NEW |