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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 "+third_party/ocmock", | 72 "+third_party/ocmock", |
73 "+third_party/re2", | 73 "+third_party/re2", |
74 "+third_party/skia", | 74 "+third_party/skia", |
75 "+third_party/sqlite", | 75 "+third_party/sqlite", |
76 "+third_party/khronos", | 76 "+third_party/khronos", |
77 "+third_party/webrtc", | 77 "+third_party/webrtc", |
78 "+third_party/webrtc_overrides", | 78 "+third_party/webrtc_overrides", |
79 "+third_party/zlib/google", | 79 "+third_party/zlib/google", |
80 "+third_party/WebKit/public/platform", | 80 "+third_party/WebKit/public/platform", |
81 "+third_party/WebKit/public/web", | 81 "+third_party/WebKit/public/web", |
| 82 "+third_party/widevine/cdm", |
82 | 83 |
83 "+ui/accelerated_widget_mac", | 84 "+ui/accelerated_widget_mac", |
84 "+ui/accessibility", | 85 "+ui/accessibility", |
85 "+ui/android", | 86 "+ui/android", |
86 # Aura is analogous to Win32 or a Gtk, so it is allowed. | 87 # Aura is analogous to Win32 or a Gtk, so it is allowed. |
87 "+ui/aura", | 88 "+ui/aura", |
88 "+ui/base", | 89 "+ui/base", |
89 "+ui/compositor", | 90 "+ui/compositor", |
90 "+ui/display", | 91 "+ui/display", |
91 "+ui/events", | 92 "+ui/events", |
(...skipping 30 matching lines...) Expand all 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 |