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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 ] | 251 ] |
250 } | 252 } |
251 | 253 |
252 # Non-mobile builds. | 254 # Non-mobile builds. |
253 if (!is_android && !is_ios) { | 255 if (!is_android && !is_ios) { |
254 deps += [ | 256 deps += [ |
255 "//device/usb", | 257 "//device/usb", |
256 ] | 258 ] |
257 } | 259 } |
258 } | 260 } |
OLD | NEW |