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. Also, we may only depend on files in | 2 # from src/chrome in src/content. Also, we may only depend on files in |
3 # src/components that are shared with the mojo html_viewer. | 3 # src/components that are shared with the mojo html_viewer. |
4 include_rules = [ | 4 include_rules = [ |
5 # The subdirectories in content/ will manually allow their own include | 5 # The subdirectories in content/ will manually allow their own include |
6 # directories in content/ so we disallow all of them. | 6 # directories in content/ so we disallow all of them. |
7 "-content", | 7 "-content", |
8 "+content/app/resources/grit/content_resources.h", | 8 "+content/app/resources/grit/content_resources.h", |
9 "+content/common", | 9 "+content/common", |
10 "+content/grit", | 10 "+content/grit", |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 "+third_party/angle", | 59 "+third_party/angle", |
60 "+third_party/flac", | 60 "+third_party/flac", |
61 "+third_party/libjingle", | 61 "+third_party/libjingle", |
62 "+third_party/mozilla", | 62 "+third_party/mozilla", |
63 "+third_party/ocmock", | 63 "+third_party/ocmock", |
64 "+third_party/re2", | 64 "+third_party/re2", |
65 "+third_party/skia", | 65 "+third_party/skia", |
66 "+third_party/sqlite", | 66 "+third_party/sqlite", |
67 "+third_party/khronos", | 67 "+third_party/khronos", |
68 "+third_party/webrtc", | 68 "+third_party/webrtc", |
| 69 "+third_party/webrtc_overrides", |
69 "+third_party/zlib/google", | 70 "+third_party/zlib/google", |
70 "+third_party/WebKit/public/platform", | 71 "+third_party/WebKit/public/platform", |
71 "+third_party/WebKit/public/web", | 72 "+third_party/WebKit/public/web", |
72 | 73 |
73 "+ui/accelerated_widget_mac", | 74 "+ui/accelerated_widget_mac", |
74 "+ui/accessibility", | 75 "+ui/accessibility", |
75 "+ui/android", | 76 "+ui/android", |
76 # Aura is analogous to Win32 or a Gtk, so it is allowed. | 77 # Aura is analogous to Win32 or a Gtk, so it is allowed. |
77 "+ui/aura", | 78 "+ui/aura", |
78 "+ui/base", | 79 "+ui/base", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 "+jni", | 113 "+jni", |
113 ] | 114 ] |
114 | 115 |
115 # content -> content/shell dependency is not allowed, except for browser tests. | 116 # content -> content/shell dependency is not allowed, except for browser tests. |
116 specific_include_rules = { | 117 specific_include_rules = { |
117 ".*_browsertest[a-z_]*\.(cc|h)": [ | 118 ".*_browsertest[a-z_]*\.(cc|h)": [ |
118 "+content/shell/browser", | 119 "+content/shell/browser", |
119 "+content/shell/common", | 120 "+content/shell/common", |
120 ], | 121 ], |
121 } | 122 } |
OLD | NEW |