| 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 17 matching lines...) Expand all Loading... |
| 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 "//crypto", | 34 "//crypto", |
| 35 "//device/bluetooth", | 35 "//device/bluetooth", |
| 36 "//device/nfc", | 36 "//device/nfc", |
| 37 "//device/usb", | 37 "//device/usb", |
| 38 "//extensions/common", |
| 38 "//extensions/common/api", | 39 "//extensions/common/api", |
| 39 "//gin", | 40 "//gin", |
| 40 "//gpu", | 41 "//gpu", |
| 41 "//google_apis", | 42 "//google_apis", |
| 42 "//google_apis/gcm", | 43 "//google_apis/gcm", |
| 43 "//ipc", | 44 "//ipc", |
| 44 "//media", | 45 "//media", |
| 45 "//mojo", | 46 "//mojo", |
| 46 "//mojo/common", | 47 "//mojo/common", |
| 47 "//mojo/environment:chromium", | 48 "//mojo/environment:chromium", |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 "//chrome/browser", # Blocked on content. | 158 "//chrome/browser", # Blocked on content. |
| 158 "//chrome/browser/devtools", # Blocked on content. | 159 "//chrome/browser/devtools", # Blocked on content. |
| 159 "//chrome/browser/ui", # Blocked on content. | 160 "//chrome/browser/ui", # Blocked on content. |
| 160 "//chrome/browser/ui/views", # Blocked on content. | 161 "//chrome/browser/ui/views", # Blocked on content. |
| 161 "//chrome/common", # Blocked on content. | 162 "//chrome/common", # Blocked on content. |
| 162 "//chrome/plugin", # Blocked on content. | 163 "//chrome/plugin", # Blocked on content. |
| 163 "//chrome/renderer", # Blocked on content. | 164 "//chrome/renderer", # Blocked on content. |
| 164 "//chrome/service", # Blocked on content. | 165 "//chrome/service", # Blocked on content. |
| 165 "//chrome/utility", # Blocked on content. | 166 "//chrome/utility", # Blocked on content. |
| 166 "//content", | 167 "//content", |
| 168 "//extensions/common", |
| 167 "//extensions/common/api", | 169 "//extensions/common/api", |
| 168 "//pdf", # Not compiled on Android in GYP yet, either. | 170 "//pdf", # Not compiled on Android in GYP yet, either. |
| 169 "//ppapi:ppapi_c", | 171 "//ppapi:ppapi_c", |
| 170 "//sandbox", | 172 "//sandbox", |
| 171 "//third_party/libusb", | 173 "//third_party/libusb", |
| 172 "//ui/keyboard", # Blocked on content. | 174 "//ui/keyboard", # Blocked on content. |
| 173 | 175 |
| 174 # Seems to not be compiled on Android. Otherwise it will need a config.h. | 176 # Seems to not be compiled on Android. Otherwise it will need a config.h. |
| 175 "//third_party/libxslt", | 177 "//third_party/libxslt", |
| 176 | 178 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 202 ] | 204 ] |
| 203 } | 205 } |
| 204 | 206 |
| 205 if (use_ozone) { | 207 if (use_ozone) { |
| 206 deps += [ | 208 deps += [ |
| 207 "//ui/events/ozone:events_ozone", | 209 "//ui/events/ozone:events_ozone", |
| 208 "//ui/events/ozone:events_ozone_evdev", | 210 "//ui/events/ozone:events_ozone_evdev", |
| 209 ] | 211 ] |
| 210 } | 212 } |
| 211 } | 213 } |
| OLD | NEW |