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 18 matching lines...) Expand all Loading... |
29 "//chrome/renderer", | 29 "//chrome/renderer", |
30 "//chrome/service", | 30 "//chrome/service", |
31 "//chrome/utility", | 31 "//chrome/utility", |
32 "//components:all_components", | 32 "//components:all_components", |
33 "//content", | 33 "//content", |
34 "//content/shell:content_shell", | 34 "//content/shell:content_shell", |
35 "//content/test:test_support", | 35 "//content/test:test_support", |
36 "//crypto", | 36 "//crypto", |
37 "//device/bluetooth", | 37 "//device/bluetooth", |
38 "//device/nfc", | 38 "//device/nfc", |
39 "//device/usb", | |
40 "//extensions/browser", | 39 "//extensions/browser", |
41 "//extensions/common", | 40 "//extensions/common", |
42 "//extensions/common/api", | 41 "//extensions/common/api", |
43 "//extensions/renderer", | 42 "//extensions/renderer", |
44 "//gin", | 43 "//gin", |
45 "//gpu", | 44 "//gpu", |
46 "//google_apis", | 45 "//google_apis", |
47 "//google_apis/gcm", | 46 "//google_apis/gcm", |
48 "//ipc", | 47 "//ipc", |
49 "//ipc/mojo", | 48 "//ipc/mojo", |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 "//webkit/child", | 228 "//webkit/child", |
230 ] | 229 ] |
231 } | 230 } |
232 | 231 |
233 if (use_ozone) { | 232 if (use_ozone) { |
234 deps += [ | 233 deps += [ |
235 "//ui/ozone", | 234 "//ui/ozone", |
236 "//ui/ozone/demo", | 235 "//ui/ozone/demo", |
237 ] | 236 ] |
238 } | 237 } |
| 238 |
| 239 # Non-mobile builds. |
| 240 if (!is_android && !is_ios) { |
| 241 deps += [ |
| 242 "//device/usb", |
| 243 ] |
| 244 } |
239 } | 245 } |
OLD | NEW |