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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 "//ui/snapshot", | 120 "//ui/snapshot", |
121 "//ui/strings", | 121 "//ui/strings", |
122 "//ui/surface", | 122 "//ui/surface", |
123 "//ui/views", | 123 "//ui/views", |
124 "//ui/views/controls/webview", | 124 "//ui/views/controls/webview", |
125 "//ui/web_dialogs", | 125 "//ui/web_dialogs", |
126 "//ui/wm", | 126 "//ui/wm", |
127 "//url", | 127 "//url", |
128 "//v8:v8", | 128 "//v8:v8", |
129 "//webkit/browser:storage", | 129 "//webkit/browser:storage", |
130 "//webkit/child", | |
131 ] | 130 ] |
132 | 131 |
133 if (!is_win) { | 132 if (!is_win) { |
134 deps += [ "//breakpad:symupload" ] | 133 deps += [ "//breakpad:symupload" ] |
135 } | 134 } |
136 | 135 |
137 if (is_linux) { | 136 if (is_linux) { |
138 deps += [ | 137 deps += [ |
139 "//dbus", | 138 "//dbus", |
140 "//third_party/fontconfig", | 139 "//third_party/fontconfig", |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 "//google_apis/gcm", | 221 "//google_apis/gcm", |
223 "//remoting/client/plugin", | 222 "//remoting/client/plugin", |
224 "//third_party/cld_2", | 223 "//third_party/cld_2", |
225 "//third_party/libaddressinput", | 224 "//third_party/libaddressinput", |
226 "//third_party/ffmpeg", | 225 "//third_party/ffmpeg", |
227 "//ui:ui_unittests", | 226 "//ui:ui_unittests", |
228 "//ui/app_list", | 227 "//ui/app_list", |
229 "//ui/web_dialogs", | 228 "//ui/web_dialogs", |
230 "//ui/wm", | 229 "//ui/wm", |
231 "//webkit/browser:storage", | 230 "//webkit/browser:storage", |
232 "//webkit/child", | |
233 ] | 231 ] |
234 } | 232 } |
235 | 233 |
236 if (use_ozone) { | 234 if (use_ozone) { |
237 deps += [ | 235 deps += [ |
238 "//ui/ozone", | 236 "//ui/ozone", |
239 "//ui/ozone/demo", | 237 "//ui/ozone/demo", |
240 ] | 238 ] |
241 } | 239 } |
242 | 240 |
243 # Non-mobile builds. | 241 # Non-mobile builds. |
244 if (!is_android && !is_ios) { | 242 if (!is_android && !is_ios) { |
245 deps += [ | 243 deps += [ |
246 "//device/usb", | 244 "//device/usb", |
247 ] | 245 ] |
248 } | 246 } |
249 } | 247 } |
OLD | NEW |