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 "+net", | 6 "+net", |
7 "+printing", | 7 "+printing", |
8 "+sql", | 8 "+sql", |
9 # Browser, renderer, common and tests access V8 for various purposes. | 9 # Browser, renderer, common and tests access V8 for various purposes. |
10 "-v8", | 10 "-v8", |
11 "+v8/include", | 11 "+v8/include", |
12 | 12 |
13 # Limit what we include from nacl. | 13 # Limit what we include from nacl. |
14 "-native_client", | 14 "-native_client", |
15 "+native_client/src/trusted/service_runtime/osx", | 15 "+native_client/src/trusted/service_runtime/osx", |
16 "+native_client/src/trusted/service_runtime/win", | 16 "+native_client/src/trusted/service_runtime/win", |
17 "+native_client/src/shared/imc", | 17 "+native_client/src/shared/imc", |
18 | 18 |
19 # The subdirectories in chrome/ will manually allow their own include | 19 # The subdirectories in chrome/ will manually allow their own include |
20 # directories in chrome/ so we disallow all of them. | 20 # directories in chrome/ so we disallow all of them. |
21 "-chrome", | 21 "-chrome", |
22 "+chrome/common", | 22 "+chrome/common", |
23 "+chrome/test", | 23 "+chrome/test", |
24 "+content/public/android/java", | |
Yaron
2012/08/02 20:50:24
It's probably better to instead add:
content/publi
| |
24 "+content/public/common", | 25 "+content/public/common", |
25 "+content/public/test", | 26 "+content/public/test", |
26 "+content/test/gpu", | 27 "+content/test/gpu", |
27 "+content/test/net", | 28 "+content/test/net", |
28 "+content/test/browser_test_base.h", # http://crbug.com/90448 | 29 "+content/test/browser_test_base.h", # http://crbug.com/90448 |
29 | 30 |
30 # Don't allow inclusion of these other libs we shouldn't be calling directly. | 31 # Don't allow inclusion of these other libs we shouldn't be calling directly. |
31 "-webkit", | 32 "-webkit", |
32 "-tools", | 33 "-tools", |
33 | 34 |
(...skipping 14 matching lines...) Expand all Loading... | |
48 "+third_party/icon_family", # IconFamily for Mac. | 49 "+third_party/icon_family", # IconFamily for Mac. |
49 "+third_party/libxml", | 50 "+third_party/libxml", |
50 "+third_party/mozilla", # Mozilla interface headers. | 51 "+third_party/mozilla", # Mozilla interface headers. |
51 "+third_party/npapi", # NPAPI interface headers. | 52 "+third_party/npapi", # NPAPI interface headers. |
52 "+third_party/skia", | 53 "+third_party/skia", |
53 "+third_party/tcmalloc", # tcmallo | 54 "+third_party/tcmalloc", # tcmallo |
54 "+third_party/GTM", # Google Toolbox for Mac. | 55 "+third_party/GTM", # Google Toolbox for Mac. |
55 | 56 |
56 "+ui", | 57 "+ui", |
57 ] | 58 ] |
OLD | NEW |