| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "//crypto", | 48 "//crypto", |
| 49 "//device/battery", | 49 "//device/battery", |
| 50 "//device/bluetooth", | 50 "//device/bluetooth", |
| 51 "//device/nfc", | 51 "//device/nfc", |
| 52 "//extensions/browser", | 52 "//extensions/browser", |
| 53 "//extensions/common", | 53 "//extensions/common", |
| 54 "//extensions/common/api", | 54 "//extensions/common/api", |
| 55 "//extensions/renderer", | 55 "//extensions/renderer", |
| 56 "//gin", | 56 "//gin", |
| 57 "//gpu", | 57 "//gpu", |
| 58 "//gpu/blink", | |
| 59 "//google_apis", | 58 "//google_apis", |
| 60 "//google_apis/gcm", | 59 "//google_apis/gcm", |
| 61 "//ipc", | 60 "//ipc", |
| 62 "//ipc/mojo", | 61 "//ipc/mojo", |
| 63 "//jingle:notifier", | 62 "//jingle:notifier", |
| 64 "//media", | 63 "//media", |
| 65 "//media/blink", | 64 "//media/blink", |
| 66 "//media/cast", | 65 "//media/cast", |
| 67 "//media/mojo", | 66 "//media/mojo", |
| 68 "//mojo", | 67 "//mojo", |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 "//ui/native_theme", | 352 "//ui/native_theme", |
| 354 "//ui/snapshot", | 353 "//ui/snapshot", |
| 355 "//ui/surface", | 354 "//ui/surface", |
| 356 "//ui/views", | 355 "//ui/views", |
| 357 "//ui/views/controls/webview", | 356 "//ui/views/controls/webview", |
| 358 "//ui/web_dialogs", | 357 "//ui/web_dialogs", |
| 359 "//ui/wm", | 358 "//ui/wm", |
| 360 ] | 359 ] |
| 361 } | 360 } |
| 362 } | 361 } |
| OLD | NEW |