| 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 "//device/usb", | 266 "//device/usb", |
| 267 "//third_party/pdfium/samples", | 267 "//third_party/pdfium/samples", |
| 268 ] | 268 ] |
| 269 } | 269 } |
| 270 | 270 |
| 271 # | 271 # |
| 272 # TODO(GYP): Make everything below this work in the GN build. | 272 # TODO(GYP): Make everything below this work in the GN build. |
| 273 # | 273 # |
| 274 | 274 |
| 275 if (is_mac) { | 275 if (is_mac) { |
| 276 # TODO(dpranke): These need a webrtc fix in order to build. | |
| 277 deps -= [ | |
| 278 "//jingle:notifier", | |
| 279 "//third_party/libjingle", | |
| 280 "//third_party/webrtc", | |
| 281 ] | |
| 282 | |
| 283 # TODO(dpranke): These depend on Blink and need Blink fixes to build. | |
| 284 deps -= [ | |
| 285 "//cc/blink", | |
| 286 "//content", | |
| 287 "//content/test:test_support", | |
| 288 "//media/blink", | |
| 289 "//pdf", | |
| 290 "//ppapi:ppapi_c", | |
| 291 "//third_party/WebKit/public:all_blink", | |
| 292 "//ui/app_list", | |
| 293 ] | |
| 294 | |
| 295 # TODO(dpranke): These are as-yet untriaged but need at least the above. | 276 # TODO(dpranke): These are as-yet untriaged but need at least the above. |
| 296 deps -= [ | 277 deps -= [ |
| 297 "//apps", | 278 "//apps", |
| 298 "//ash", | 279 "//ash", |
| 299 "//chrome/browser", | 280 "//chrome/browser", |
| 300 "//chrome/browser/devtools", | 281 "//chrome/browser/devtools", |
| 301 "//chrome/common", | 282 "//chrome/common", |
| 302 "//chrome/plugin", | 283 "//chrome/plugin", |
| 303 "//chrome/renderer", | 284 "//chrome/renderer", |
| 304 "//chrome/test", | 285 "//chrome/test", |
| 305 "//chrome/utility", | 286 "//chrome/utility", |
| 306 "//components:all_components", | 287 "//components:all_components", |
| 307 "//content/shell:content_shell", | 288 "//content/shell:content_shell", |
| 308 "//extensions/browser", | 289 "//extensions/browser", |
| 309 "//extensions/common", | 290 "//extensions/common", |
| 310 "//extensions/common/api", | 291 "//extensions/common/api", |
| 311 "//extensions/renderer", | 292 "//extensions/renderer", |
| 312 "//remoting/client/plugin", | 293 "//remoting/client/plugin", |
| 313 "//third_party/usrsctp", | 294 "//third_party/usrsctp", |
| 295 "//ui/app_list", |
| 314 "//ui/aura", | 296 "//ui/aura", |
| 315 "//ui/keyboard", | 297 "//ui/keyboard", |
| 316 "//ui/views", | 298 "//ui/views", |
| 317 "//ui/views/controls/webview", | 299 "//ui/views/controls/webview", |
| 318 "//ui/web_dialogs", | 300 "//ui/web_dialogs", |
| 319 ] | 301 ] |
| 320 } | 302 } |
| 321 | 303 |
| 322 if (is_win) { | 304 if (is_win) { |
| 323 deps -= [ | 305 deps -= [ |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 "//ui/native_theme", | 358 "//ui/native_theme", |
| 377 "//ui/snapshot", | 359 "//ui/snapshot", |
| 378 "//ui/surface", | 360 "//ui/surface", |
| 379 "//ui/views", | 361 "//ui/views", |
| 380 "//ui/views/controls/webview", | 362 "//ui/views/controls/webview", |
| 381 "//ui/web_dialogs", | 363 "//ui/web_dialogs", |
| 382 "//ui/wm", | 364 "//ui/wm", |
| 383 ] | 365 ] |
| 384 } | 366 } |
| 385 } | 367 } |
| OLD | NEW |