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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 "//ui/ozone/demo", | 248 "//ui/ozone/demo", |
249 ] | 249 ] |
250 } | 250 } |
251 | 251 |
252 # Non-mobile builds. | 252 # Non-mobile builds. |
253 if (!is_android && !is_ios) { | 253 if (!is_android && !is_ios) { |
254 deps += [ | 254 deps += [ |
255 "//device/usb", | 255 "//device/usb", |
256 ] | 256 ] |
257 } | 257 } |
| 258 |
| 259 if (is_win) { |
| 260 # TODO(GYP): Make these work. |
| 261 deps -= [ |
| 262 "//apps", |
| 263 "//ash", |
| 264 "//chrome/browser", |
| 265 "//chrome/browser/devtools", |
| 266 "//chrome/common", |
| 267 "//chrome/plugin", |
| 268 "//chrome/renderer", |
| 269 "//chrome/utility", |
| 270 "//components:all_components", |
| 271 "//cc", |
| 272 "//cc/blink", |
| 273 "//content", |
| 274 "//content/shell:content_shell", |
| 275 "//content/test:test_support", |
| 276 "//device/bluetooth", |
| 277 "//extensions/browser", |
| 278 "//extensions/common", |
| 279 "//extensions/common/api", |
| 280 "//extensions/renderer", |
| 281 "//gpu", |
| 282 "//google_apis", |
| 283 "//google_apis/gcm", |
| 284 "//jingle:notifier", |
| 285 "//media", |
| 286 "//media/blink", |
| 287 "//media/cast", |
| 288 "//media/mojo", |
| 289 "//mojo", |
| 290 "//pdf", |
| 291 "//ppapi:ppapi_c", |
| 292 "//printing", |
| 293 "//remoting/client/plugin", |
| 294 "//sandbox", |
| 295 "//storage/browser", |
| 296 "//sync", |
| 297 "//third_party/WebKit/public:all_blink", |
| 298 "//third_party/angle:translator", |
| 299 "//third_party/leveldatabase", |
| 300 "//third_party/libjingle", |
| 301 "//third_party/usrsctp", |
| 302 "//third_party/webrtc", |
| 303 "//ui/accessibility", |
| 304 "//ui/app_list", |
| 305 "//ui/aura", |
| 306 "//ui/base", |
| 307 "//ui/display", |
| 308 "//ui/events", |
| 309 "//ui/gfx", |
| 310 "//ui/gl", |
| 311 "//ui/keyboard", |
| 312 "//ui/native_theme", |
| 313 "//ui/snapshot", |
| 314 "//ui/surface", |
| 315 "//ui/views", |
| 316 "//ui/views/controls/webview", |
| 317 "//ui/web_dialogs", |
| 318 "//ui/wm", |
| 319 ] |
| 320 } |
258 } | 321 } |
OLD | NEW |