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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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", |
71 "+third_party/WebKit/public/platform", | 71 "+third_party/WebKit/public/platform", |
72 "+third_party/WebKit/public/web", | 72 "+third_party/WebKit/public/web", |
73 | 73 |
| 74 "+ui/accessibility", |
74 "+ui/android", | 75 "+ui/android", |
75 # Aura is analogous to Win32 or a Gtk, so it is allowed. | 76 # Aura is analogous to Win32 or a Gtk, so it is allowed. |
76 "+ui/aura", | 77 "+ui/aura", |
77 "+ui/base", | 78 "+ui/base", |
78 "+ui/compositor", | 79 "+ui/compositor", |
79 "+ui/events", | 80 "+ui/events", |
80 "+ui/gfx", | 81 "+ui/gfx", |
81 "+ui/gl", | 82 "+ui/gl", |
82 "+ui/native_theme", | 83 "+ui/native_theme", |
83 "+ui/shell_dialogs", | 84 "+ui/shell_dialogs", |
(...skipping 10 matching lines...) Expand all Loading... |
94 # Content shouldn't depend on views. While we technically don't need this | 95 # Content shouldn't depend on views. While we technically don't need this |
95 # line, since the top level DEPS doesn't allow it, we add it to make this | 96 # line, since the top level DEPS doesn't allow it, we add it to make this |
96 # explicit. | 97 # explicit. |
97 "-ui/views", | 98 "-ui/views", |
98 | 99 |
99 "+webkit", | 100 "+webkit", |
100 | 101 |
101 # For generated JNI includes. | 102 # For generated JNI includes. |
102 "+jni", | 103 "+jni", |
103 ] | 104 ] |
OLD | NEW |