OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # This is the root build file for GN. GN will start processing by loading this | 5 # This is the root build file for GN. GN will start processing by loading this |
6 # file, and recursively load all dependencies until all dependencies are either | 6 # file, and recursively load all dependencies until all dependencies are either |
7 # resolved or known not to exist (which will cause the build to fail). So if | 7 # resolved or known not to exist (which will cause the build to fail). So if |
8 # you add a new build file, there must be some path of dependencies from this | 8 # you add a new build file, there must be some path of dependencies from this |
9 # file to your new one or GN won't know about it. | 9 # file to your new one or GN won't know about it. |
10 | 10 |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 "//ui/base", | 94 "//ui/base", |
95 "//ui/events", | 95 "//ui/events", |
96 "//ui/gfx", | 96 "//ui/gfx", |
97 "//ui/gl", | 97 "//ui/gl", |
98 "//ui/keyboard", | 98 "//ui/keyboard", |
99 "//ui/native_theme", | 99 "//ui/native_theme", |
100 "//ui/resources", | 100 "//ui/resources", |
101 "//ui/snapshot", | 101 "//ui/snapshot", |
102 "//ui/strings", | 102 "//ui/strings", |
103 "//ui/surface", | 103 "//ui/surface", |
| 104 "//ui/views", |
104 "//ui/web_dialogs", | 105 "//ui/web_dialogs", |
105 "//ui/wm", | 106 "//ui/wm", |
106 "//url", | 107 "//url", |
107 "//v8:v8", | 108 "//v8:v8", |
108 "//webkit/browser:storage", | 109 "//webkit/browser:storage", |
109 "//webkit/child", | 110 "//webkit/child", |
110 ] | 111 ] |
111 | 112 |
112 if (!is_win) { | 113 if (!is_win) { |
113 deps += [ "//breakpad:symupload" ] | 114 deps += [ "//breakpad:symupload" ] |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 "//ppapi:ppapi_c", | 158 "//ppapi:ppapi_c", |
158 "//sandbox", | 159 "//sandbox", |
159 "//third_party/libusb", | 160 "//third_party/libusb", |
160 "//ui/keyboard", # Blocked on content. | 161 "//ui/keyboard", # Blocked on content. |
161 | 162 |
162 # Seems to not be compiled on Android. Otherwise it will need a config.h. | 163 # Seems to not be compiled on Android. Otherwise it will need a config.h. |
163 "//third_party/libxslt", | 164 "//third_party/libxslt", |
164 | 165 |
165 "//tools/gn", | 166 "//tools/gn", |
166 "//ui/aura", | 167 "//ui/aura", |
| 168 "//ui/views", |
167 | 169 |
168 # Fails on Android for unknown reasons. | 170 # Fails on Android for unknown reasons. |
169 "//third_party/flac", | 171 "//third_party/flac", |
170 "//breakpad:symupload", | 172 "//breakpad:symupload", |
171 | 173 |
172 # TODO(brettw) make Blink work on Android. | 174 # TODO(brettw) make Blink work on Android. |
173 "//third_party/WebKit/public:all_blink", | 175 "//third_party/WebKit/public:all_blink", |
174 | 176 |
175 # Not tested on Android yet: | 177 # Not tested on Android yet: |
176 "//third_party/cld_2", | 178 "//third_party/cld_2", |
177 "//third_party/libaddressinput", | 179 "//third_party/libaddressinput", |
178 "//third_party/ffmpeg", | 180 "//third_party/ffmpeg", |
179 "//ui/web_dialogs", | 181 "//ui/web_dialogs", |
180 "//ui/wm", | 182 "//ui/wm", |
181 "//webkit/browser:storage", | 183 "//webkit/browser:storage", |
182 "//webkit/child", | 184 "//webkit/child", |
183 ] | 185 ] |
184 } | 186 } |
185 | 187 |
186 if (use_ozone) { | 188 if (use_ozone) { |
187 deps += [ | 189 deps += [ |
188 "//ui/events/ozone:events_ozone", | 190 "//ui/events/ozone:events_ozone", |
189 "//ui/events/ozone:events_ozone_evdev", | 191 "//ui/events/ozone:events_ozone_evdev", |
190 ] | 192 ] |
191 } | 193 } |
192 } | 194 } |
OLD | NEW |