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 20 matching lines...) Expand all Loading... |
31 deps = [ | 31 deps = [ |
32 "//apps", | 32 "//apps", |
33 "//ash", | 33 "//ash", |
34 "//cc", | 34 "//cc", |
35 "//cc/blink", | 35 "//cc/blink", |
36 "//chrome/browser", | 36 "//chrome/browser", |
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/test", |
| 42 "//chrome/tools", |
41 "//chrome/utility", | 43 "//chrome/utility", |
42 "//components:all_components", | 44 "//components:all_components", |
43 "//content", | 45 "//content", |
44 "//content/shell:content_shell", | 46 "//content/shell:content_shell", |
45 "//content/test:test_support", | 47 "//content/test:test_support", |
46 "//crypto", | 48 "//crypto", |
47 "//device/battery", | 49 "//device/battery", |
48 "//device/bluetooth", | 50 "//device/bluetooth", |
49 "//device/nfc", | 51 "//device/nfc", |
50 "//extensions/browser", | 52 "//extensions/browser", |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 ] | 200 ] |
199 } | 201 } |
200 | 202 |
201 deps -= [ | 203 deps -= [ |
202 "//apps", # Needs testing. | 204 "//apps", # Needs testing. |
203 "//chrome/browser", | 205 "//chrome/browser", |
204 "//chrome/browser/devtools", | 206 "//chrome/browser/devtools", |
205 "//chrome/common", | 207 "//chrome/common", |
206 "//chrome/plugin", | 208 "//chrome/plugin", |
207 "//chrome/renderer", | 209 "//chrome/renderer", |
| 210 "//chrome/test", |
| 211 "//chrome/tools", |
208 "//chrome/utility", | 212 "//chrome/utility", |
209 "//content/shell:content_shell", | 213 "//content/shell:content_shell", |
210 "//extensions/browser", | 214 "//extensions/browser", |
211 "//extensions/common", | 215 "//extensions/common", |
212 "//extensions/common/api", | 216 "//extensions/common/api", |
213 "//extensions/renderer", | 217 "//extensions/renderer", |
214 "//pdf", # Not compiled on Android in GYP yet, either. | 218 "//pdf", # Not compiled on Android in GYP yet, either. |
215 "//ppapi:ppapi_c", | 219 "//ppapi:ppapi_c", |
216 "//third_party/libusb", | 220 "//third_party/libusb", |
217 "//ui/keyboard", # Blocked on content. | 221 "//ui/keyboard", # Blocked on content. |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 ] | 253 ] |
250 } | 254 } |
251 | 255 |
252 # Non-mobile builds. | 256 # Non-mobile builds. |
253 if (!is_android && !is_ios) { | 257 if (!is_android && !is_ios) { |
254 deps += [ | 258 deps += [ |
255 "//device/usb", | 259 "//device/usb", |
256 ] | 260 ] |
257 } | 261 } |
258 } | 262 } |
OLD | NEW |