OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 "+ash", | 2 "+ash", |
3 "+crypto", | 3 "+crypto", |
4 "+gpu", | 4 "+gpu", |
5 "+jni", | 5 "+jni", |
6 "+native_client", | |
7 "+net", | 6 "+net", |
8 "+printing", | 7 "+printing", |
9 "+sql", | 8 "+sql", |
10 # Browser, renderer, common and tests access V8 for various purposes. | 9 # Browser, renderer, common and tests access V8 for various purposes. |
11 "-v8", | 10 "-v8", |
12 "+v8/include", | 11 "+v8/include", |
13 | 12 |
| 13 # Limit what we include from nacl. |
| 14 "-native_client", |
| 15 "+native_client/src/trusted/service_runtime/osx", |
| 16 "+native_client/src/trusted/service_runtime/win", |
| 17 "+native_client/src/shared/imc", |
| 18 |
14 # The subdirectories in chrome/ will manually allow their own include | 19 # The subdirectories in chrome/ will manually allow their own include |
15 # directories in chrome/ so we disallow all of them. | 20 # directories in chrome/ so we disallow all of them. |
16 "-chrome", | 21 "-chrome", |
17 "+chrome/common", | 22 "+chrome/common", |
18 "+chrome/test", | 23 "+chrome/test", |
19 "+content/public/common", | 24 "+content/public/common", |
20 "+content/public/test", | 25 "+content/public/test", |
21 "+content/test/gpu", | 26 "+content/test/gpu", |
22 "+content/test/net", | 27 "+content/test/net", |
23 "+content/test/browser_test_base.h", # http://crbug.com/90448 | 28 "+content/test/browser_test_base.h", # http://crbug.com/90448 |
(...skipping 19 matching lines...) Expand all Loading... |
43 "+third_party/icon_family", # IconFamily for Mac. | 48 "+third_party/icon_family", # IconFamily for Mac. |
44 "+third_party/libxml", | 49 "+third_party/libxml", |
45 "+third_party/mozilla", # Mozilla interface headers. | 50 "+third_party/mozilla", # Mozilla interface headers. |
46 "+third_party/npapi", # NPAPI interface headers. | 51 "+third_party/npapi", # NPAPI interface headers. |
47 "+third_party/skia", | 52 "+third_party/skia", |
48 "+third_party/tcmalloc", # tcmallo | 53 "+third_party/tcmalloc", # tcmallo |
49 "+third_party/GTM", # Google Toolbox for Mac. | 54 "+third_party/GTM", # Google Toolbox for Mac. |
50 | 55 |
51 "+ui", | 56 "+ui", |
52 ] | 57 ] |
OLD | NEW |