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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 # embedder. | 53 # embedder. |
54 "-google_apis", | 54 "-google_apis", |
55 | 55 |
56 # Don't allow inclusion of these other libs we shouldn't be calling directly. | 56 # Don't allow inclusion of these other libs we shouldn't be calling directly. |
57 "-v8", | 57 "-v8", |
58 "-tools", | 58 "-tools", |
59 | 59 |
60 # Allow inclusion of third-party code: | 60 # Allow inclusion of third-party code: |
61 "+third_party/angle_dx11", | 61 "+third_party/angle_dx11", |
62 "+third_party/flac", | 62 "+third_party/flac", |
63 "+third_party/gpsd", | |
64 "+third_party/libjingle", | 63 "+third_party/libjingle", |
65 "+third_party/mozilla", | 64 "+third_party/mozilla", |
66 "+third_party/npapi/bindings", | 65 "+third_party/npapi/bindings", |
67 "+third_party/skia", | 66 "+third_party/skia", |
68 "+third_party/sqlite", | 67 "+third_party/sqlite", |
69 "+third_party/tcmalloc", | 68 "+third_party/tcmalloc", |
70 "+third_party/khronos", | 69 "+third_party/khronos", |
71 "+third_party/webrtc", | 70 "+third_party/webrtc", |
72 "+third_party/zlib/google", | 71 "+third_party/zlib/google", |
73 "+third_party/WebKit/public/platform", | 72 "+third_party/WebKit/public/platform", |
(...skipping 21 matching lines...) Expand all Loading... |
95 # Content shouldn't depend on views. While we technically don't need this | 94 # Content shouldn't depend on views. While we technically don't need this |
96 # line, since the top level DEPS doesn't allow it, we add it to make this | 95 # line, since the top level DEPS doesn't allow it, we add it to make this |
97 # explicit. | 96 # explicit. |
98 "-ui/views", | 97 "-ui/views", |
99 | 98 |
100 "+webkit", | 99 "+webkit", |
101 | 100 |
102 # For generated JNI includes. | 101 # For generated JNI includes. |
103 "+jni", | 102 "+jni", |
104 ] | 103 ] |
OLD | NEW |