| 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 19 matching lines...) Expand all Loading... |
| 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", | 39 "//device/usb", |
| 40 "//extensions/browser", |
| 40 "//extensions/common", | 41 "//extensions/common", |
| 41 "//extensions/common/api", | 42 "//extensions/common/api", |
| 42 "//gin", | 43 "//gin", |
| 43 "//gpu", | 44 "//gpu", |
| 44 "//google_apis", | 45 "//google_apis", |
| 45 "//google_apis/gcm", | 46 "//google_apis/gcm", |
| 46 "//ipc", | 47 "//ipc", |
| 47 "//media", | 48 "//media", |
| 48 "//mojo", | 49 "//mojo", |
| 49 "//mojo/common", | 50 "//mojo/common", |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 "//chrome/browser/ui", # Blocked on content. | 168 "//chrome/browser/ui", # Blocked on content. |
| 168 "//chrome/browser/ui/views", # Blocked on content. | 169 "//chrome/browser/ui/views", # Blocked on content. |
| 169 "//chrome/common", # Blocked on content. | 170 "//chrome/common", # Blocked on content. |
| 170 "//chrome/plugin", # Blocked on content. | 171 "//chrome/plugin", # Blocked on content. |
| 171 "//chrome/renderer", # Blocked on content. | 172 "//chrome/renderer", # Blocked on content. |
| 172 "//chrome/service", # Blocked on content. | 173 "//chrome/service", # Blocked on content. |
| 173 "//chrome/utility", # Blocked on content. | 174 "//chrome/utility", # Blocked on content. |
| 174 "//content", | 175 "//content", |
| 175 "//content/shell:content_shell", # Blocked on content. | 176 "//content/shell:content_shell", # Blocked on content. |
| 176 "//content/test:test_support", # Blocked on content. | 177 "//content/test:test_support", # Blocked on content. |
| 178 "//extensions/browser", |
| 177 "//extensions/common", | 179 "//extensions/common", |
| 178 "//extensions/common/api", | 180 "//extensions/common/api", |
| 179 "//pdf", # Not compiled on Android in GYP yet, either. | 181 "//pdf", # Not compiled on Android in GYP yet, either. |
| 180 "//ppapi:ppapi_c", | 182 "//ppapi:ppapi_c", |
| 181 "//sandbox", | 183 "//sandbox", |
| 182 "//third_party/libusb", | 184 "//third_party/libusb", |
| 183 "//ui/keyboard", # Blocked on content. | 185 "//ui/keyboard", # Blocked on content. |
| 184 | 186 |
| 185 # Seems to not be compiled on Android. Otherwise it will need a config.h. | 187 # Seems to not be compiled on Android. Otherwise it will need a config.h. |
| 186 "//third_party/libxslt", | 188 "//third_party/libxslt", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 213 ] | 215 ] |
| 214 } | 216 } |
| 215 | 217 |
| 216 if (use_ozone) { | 218 if (use_ozone) { |
| 217 deps += [ | 219 deps += [ |
| 218 "//ui/events/ozone:events_ozone", | 220 "//ui/events/ozone:events_ozone", |
| 219 "//ui/events/ozone:events_ozone_evdev", | 221 "//ui/events/ozone:events_ozone_evdev", |
| 220 ] | 222 ] |
| 221 } | 223 } |
| 222 } | 224 } |
| OLD | NEW |