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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 "//chrome/tools", | 42 "//chrome/tools", |
43 "//chrome/utility", | 43 "//chrome/utility", |
44 "//components:all_components", | 44 "//components:all_components", |
45 "//content", | 45 "//content", |
46 "//content/shell:content_shell", | 46 "//content/shell:content_shell", |
47 "//content/test:test_support", | 47 "//content/test:test_support", |
48 "//crypto", | 48 "//crypto", |
49 "//device/battery", | 49 "//device/battery", |
50 "//device/bluetooth", | 50 "//device/bluetooth", |
51 "//device/nfc", | 51 "//device/nfc", |
52 "//device/vibration", | |
53 "//extensions/browser", | 52 "//extensions/browser", |
54 "//extensions/common", | 53 "//extensions/common", |
55 "//extensions/common/api", | 54 "//extensions/common/api", |
56 "//extensions/renderer", | 55 "//extensions/renderer", |
57 "//gin", | 56 "//gin", |
58 "//gpu", | 57 "//gpu", |
59 "//google_apis", | 58 "//google_apis", |
60 "//google_apis/gcm", | 59 "//google_apis/gcm", |
61 "//ipc", | 60 "//ipc", |
62 "//ipc/mojo", | 61 "//ipc/mojo", |
(...skipping 290 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 |