| OLD | NEW |
| 1 # Do NOT add chrome to the list below. We shouldn't be including files | 1 # Do NOT add chrome to the list below. We shouldn't be including files |
| 2 # from src/chrome in src/content. | 2 # from src/chrome 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/app/resources/grit/content_resources.h", | 7 "+content/app/resources/grit/content_resources.h", |
| 8 "+content/common", | 8 "+content/common", |
| 9 "+content/grit", | 9 "+content/grit", |
| 10 "+content/public/common", | 10 "+content/public/common", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 # don't expect alternate implementations to be provided by the | 59 # don't expect alternate implementations to be provided by the |
| 60 # embedder. | 60 # embedder. |
| 61 "-google_apis", | 61 "-google_apis", |
| 62 | 62 |
| 63 # Don't allow inclusion of these other libs we shouldn't be calling directly. | 63 # Don't allow inclusion of these other libs we shouldn't be calling directly. |
| 64 "-v8", | 64 "-v8", |
| 65 "-tools", | 65 "-tools", |
| 66 | 66 |
| 67 # Allow inclusion of third-party code: | 67 # Allow inclusion of third-party code: |
| 68 "+third_party/angle", | 68 "+third_party/angle", |
| 69 "+third_party/boringssl/src/include", |
| 69 "+third_party/flac", | 70 "+third_party/flac", |
| 70 "+third_party/libjingle", | 71 "+third_party/libjingle", |
| 71 "+third_party/mozilla", | 72 "+third_party/mozilla", |
| 72 "+third_party/ocmock", | 73 "+third_party/ocmock", |
| 73 "+third_party/re2", | 74 "+third_party/re2", |
| 74 "+third_party/skia", | 75 "+third_party/skia", |
| 75 "+third_party/sqlite", | 76 "+third_party/sqlite", |
| 76 "+third_party/khronos", | 77 "+third_party/khronos", |
| 77 "+third_party/webrtc", | 78 "+third_party/webrtc", |
| 78 "+third_party/webrtc_overrides", | 79 "+third_party/webrtc_overrides", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 "+jni", | 123 "+jni", |
| 123 ] | 124 ] |
| 124 | 125 |
| 125 # content -> content/shell dependency is not allowed, except for browser tests. | 126 # content -> content/shell dependency is not allowed, except for browser tests. |
| 126 specific_include_rules = { | 127 specific_include_rules = { |
| 127 ".*_browsertest[a-z_]*\.(cc|h)": [ | 128 ".*_browsertest[a-z_]*\.(cc|h)": [ |
| 128 "+content/shell/browser", | 129 "+content/shell/browser", |
| 129 "+content/shell/common", | 130 "+content/shell/common", |
| 130 ], | 131 ], |
| 131 } | 132 } |
| OLD | NEW |