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 26 matching lines...) Expand all Loading... |
37 "//chrome/browser/devtools", | 37 "//chrome/browser/devtools", |
38 "//chrome/common", | 38 "//chrome/common", |
39 "//chrome/plugin", | 39 "//chrome/plugin", |
40 "//chrome/renderer", | 40 "//chrome/renderer", |
41 "//chrome/utility", | 41 "//chrome/utility", |
42 "//components:all_components", | 42 "//components:all_components", |
43 "//content", | 43 "//content", |
44 "//content/shell:content_shell", | 44 "//content/shell:content_shell", |
45 "//content/test:test_support", | 45 "//content/test:test_support", |
46 "//crypto", | 46 "//crypto", |
| 47 "//device/battery", |
47 "//device/bluetooth", | 48 "//device/bluetooth", |
48 "//device/nfc", | 49 "//device/nfc", |
49 "//extensions/browser", | 50 "//extensions/browser", |
50 "//extensions/common", | 51 "//extensions/common", |
51 "//extensions/common/api", | 52 "//extensions/common/api", |
52 "//extensions/renderer", | 53 "//extensions/renderer", |
53 "//gin", | 54 "//gin", |
54 "//gpu", | 55 "//gpu", |
55 "//google_apis", | 56 "//google_apis", |
56 "//google_apis/gcm", | 57 "//google_apis/gcm", |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 ] | 249 ] |
249 } | 250 } |
250 | 251 |
251 # Non-mobile builds. | 252 # Non-mobile builds. |
252 if (!is_android && !is_ios) { | 253 if (!is_android && !is_ios) { |
253 deps += [ | 254 deps += [ |
254 "//device/usb", | 255 "//device/usb", |
255 ] | 256 ] |
256 } | 257 } |
257 } | 258 } |
OLD | NEW |