OLD | NEW |
1 # Do NOT add chrome or components to the list below. We shouldn't be | 1 # Do NOT add chrome or components to the list below. We shouldn't be |
2 # including files from src/chrome or src/components in src/content. | 2 # including files from src/chrome or src/components in src/content. |
3 include_rules = [ | 3 include_rules = [ |
4 # The subdirectories in content/ will manually allow their own include | 4 # The subdirectories in content/ will manually allow their own include |
5 # directories in content/ so we disallow all of them. | 5 # directories in content/ so we disallow all of them. |
6 "-content", | 6 "-content", |
7 "+content/common", | 7 "+content/common", |
8 "+content/port/common", | 8 "+content/port/common", |
9 "+content/public/common", | 9 "+content/public/common", |
10 "+content/public/test", | 10 "+content/public/test", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 # implementations that are strongly tied to Google servers, i.e. we | 50 # implementations that are strongly tied to Google servers, i.e. we |
51 # don't expect alternate implementations to be provided by the | 51 # don't expect alternate implementations to be provided by the |
52 # embedder. | 52 # embedder. |
53 "-google_apis", | 53 "-google_apis", |
54 | 54 |
55 # Don't allow inclusion of these other libs we shouldn't be calling directly. | 55 # Don't allow inclusion of these other libs we shouldn't be calling directly. |
56 "-v8", | 56 "-v8", |
57 "-tools", | 57 "-tools", |
58 | 58 |
59 # Allow inclusion of third-party code: | 59 # Allow inclusion of third-party code: |
60 "+third_party/angle_dx11", | 60 "+third_party/angle", |
61 "+third_party/flac", | 61 "+third_party/flac", |
62 "+third_party/libjingle", | 62 "+third_party/libjingle", |
63 "+third_party/mozilla", | 63 "+third_party/mozilla", |
64 "+third_party/npapi/bindings", | 64 "+third_party/npapi/bindings", |
65 "+third_party/skia", | 65 "+third_party/skia", |
66 "+third_party/sqlite", | 66 "+third_party/sqlite", |
67 "+third_party/tcmalloc", | 67 "+third_party/tcmalloc", |
68 "+third_party/khronos", | 68 "+third_party/khronos", |
69 "+third_party/webrtc", | 69 "+third_party/webrtc", |
70 "+third_party/zlib/google", | 70 "+third_party/zlib/google", |
(...skipping 22 matching lines...) Expand all Loading... |
93 # Content shouldn't depend on views. While we technically don't need this | 93 # Content shouldn't depend on views. While we technically don't need this |
94 # line, since the top level DEPS doesn't allow it, we add it to make this | 94 # line, since the top level DEPS doesn't allow it, we add it to make this |
95 # explicit. | 95 # explicit. |
96 "-ui/views", | 96 "-ui/views", |
97 | 97 |
98 "+webkit", | 98 "+webkit", |
99 | 99 |
100 # For generated JNI includes. | 100 # For generated JNI includes. |
101 "+jni", | 101 "+jni", |
102 ] | 102 ] |
OLD | NEW |