| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "//device/battery", | 49 "//device/battery", |
| 50 "//device/bluetooth", | 50 "//device/bluetooth", |
| 51 "//device/nfc", | 51 "//device/nfc", |
| 52 "//device/vibration", | 52 "//device/vibration", |
| 53 "//extensions/browser", | 53 "//extensions/browser", |
| 54 "//extensions/common", | 54 "//extensions/common", |
| 55 "//extensions/common/api", | 55 "//extensions/common/api", |
| 56 "//extensions/renderer", | 56 "//extensions/renderer", |
| 57 "//gin", | 57 "//gin", |
| 58 "//gpu", | 58 "//gpu", |
| 59 "//gpu/blink", |
| 59 "//google_apis", | 60 "//google_apis", |
| 60 "//google_apis/gcm", | 61 "//google_apis/gcm", |
| 61 "//ipc", | 62 "//ipc", |
| 62 "//ipc/mojo", | 63 "//ipc/mojo", |
| 63 "//jingle:notifier", | 64 "//jingle:notifier", |
| 64 "//media", | 65 "//media", |
| 65 "//media/blink", | 66 "//media/blink", |
| 66 "//media/cast", | 67 "//media/cast", |
| 67 "//media/mojo", | 68 "//media/mojo", |
| 68 "//mojo", | 69 "//mojo", |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 "//ui/app_list", | 294 "//ui/app_list", |
| 294 "//ui/aura", | 295 "//ui/aura", |
| 295 "//ui/keyboard", | 296 "//ui/keyboard", |
| 296 "//ui/views", | 297 "//ui/views", |
| 297 "//ui/views/controls/webview", | 298 "//ui/views/controls/webview", |
| 298 "//ui/web_dialogs", | 299 "//ui/web_dialogs", |
| 299 ] | 300 ] |
| 300 } | 301 } |
| 301 | 302 |
| 302 if (is_mac || is_ios) { | 303 if (is_mac || is_ios) { |
| 303 deps -= [ | 304 deps -= [ "//ui/touch_selection" ] |
| 304 "//ui/touch_selection", | |
| 305 ] | |
| 306 } | 305 } |
| 307 | 306 |
| 308 if (is_win) { | 307 if (is_win) { |
| 309 deps -= [ | 308 deps -= [ |
| 310 "//apps", | 309 "//apps", |
| 311 "//ash", | 310 "//ash", |
| 312 "//chrome/browser", | 311 "//chrome/browser", |
| 313 "//chrome/browser/devtools", | 312 "//chrome/browser/devtools", |
| 314 "//chrome/common", | 313 "//chrome/common", |
| 315 "//chrome/plugin", | 314 "//chrome/plugin", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 "//ui/snapshot", | 357 "//ui/snapshot", |
| 359 "//ui/surface", | 358 "//ui/surface", |
| 360 "//ui/touch_selection", | 359 "//ui/touch_selection", |
| 361 "//ui/views", | 360 "//ui/views", |
| 362 "//ui/views/controls/webview", | 361 "//ui/views/controls/webview", |
| 363 "//ui/web_dialogs", | 362 "//ui/web_dialogs", |
| 364 "//ui/wm", | 363 "//ui/wm", |
| 365 ] | 364 ] |
| 366 } | 365 } |
| 367 } | 366 } |
| OLD | NEW |