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 14 matching lines...) Expand all Loading... |
25 "//chrome/browser/ui", | 25 "//chrome/browser/ui", |
26 "//chrome/browser/ui/views", | 26 "//chrome/browser/ui/views", |
27 "//chrome/common", | 27 "//chrome/common", |
28 "//chrome/plugin", | 28 "//chrome/plugin", |
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 "//crypto", | 36 "//crypto", |
36 "//device/bluetooth", | 37 "//device/bluetooth", |
37 "//device/nfc", | 38 "//device/nfc", |
38 "//device/usb", | 39 "//device/usb", |
39 "//extensions/common", | 40 "//extensions/common", |
40 "//extensions/common/api", | 41 "//extensions/common/api", |
41 "//gin", | 42 "//gin", |
42 "//gpu", | 43 "//gpu", |
43 "//google_apis", | 44 "//google_apis", |
44 "//google_apis/gcm", | 45 "//google_apis/gcm", |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 "//chrome/browser/devtools", # Blocked on content. | 165 "//chrome/browser/devtools", # Blocked on content. |
165 "//chrome/browser/ui", # Blocked on content. | 166 "//chrome/browser/ui", # Blocked on content. |
166 "//chrome/browser/ui/views", # Blocked on content. | 167 "//chrome/browser/ui/views", # Blocked on content. |
167 "//chrome/common", # Blocked on content. | 168 "//chrome/common", # Blocked on content. |
168 "//chrome/plugin", # Blocked on content. | 169 "//chrome/plugin", # Blocked on content. |
169 "//chrome/renderer", # Blocked on content. | 170 "//chrome/renderer", # Blocked on content. |
170 "//chrome/service", # Blocked on content. | 171 "//chrome/service", # Blocked on content. |
171 "//chrome/utility", # Blocked on content. | 172 "//chrome/utility", # Blocked on content. |
172 "//content", | 173 "//content", |
173 "//content/shell:content_shell", # Blocked on content. | 174 "//content/shell:content_shell", # Blocked on content. |
| 175 "//content/test:test_support", # Blocked on content. |
174 "//extensions/common", | 176 "//extensions/common", |
175 "//extensions/common/api", | 177 "//extensions/common/api", |
176 "//pdf", # Not compiled on Android in GYP yet, either. | 178 "//pdf", # Not compiled on Android in GYP yet, either. |
177 "//ppapi:ppapi_c", | 179 "//ppapi:ppapi_c", |
178 "//sandbox", | 180 "//sandbox", |
179 "//third_party/libusb", | 181 "//third_party/libusb", |
180 "//ui/keyboard", # Blocked on content. | 182 "//ui/keyboard", # Blocked on content. |
181 | 183 |
182 # Seems to not be compiled on Android. Otherwise it will need a config.h. | 184 # Seems to not be compiled on Android. Otherwise it will need a config.h. |
183 "//third_party/libxslt", | 185 "//third_party/libxslt", |
(...skipping 26 matching lines...) Expand all Loading... |
210 ] | 212 ] |
211 } | 213 } |
212 | 214 |
213 if (use_ozone) { | 215 if (use_ozone) { |
214 deps += [ | 216 deps += [ |
215 "//ui/events/ozone:events_ozone", | 217 "//ui/events/ozone:events_ozone", |
216 "//ui/events/ozone:events_ozone_evdev", | 218 "//ui/events/ozone:events_ozone_evdev", |
217 ] | 219 ] |
218 } | 220 } |
219 } | 221 } |
OLD | NEW |