| 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 13 matching lines...) Expand all Loading... |
| 24 "//chrome/browser/devtools", | 24 "//chrome/browser/devtools", |
| 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 "//crypto", | 35 "//crypto", |
| 35 "//device/bluetooth", | 36 "//device/bluetooth", |
| 36 "//device/nfc", | 37 "//device/nfc", |
| 37 "//device/usb", | 38 "//device/usb", |
| 38 "//extensions/common", | 39 "//extensions/common", |
| 39 "//extensions/common/api", | 40 "//extensions/common/api", |
| 40 "//gin", | 41 "//gin", |
| 41 "//gpu", | 42 "//gpu", |
| 42 "//google_apis", | 43 "//google_apis", |
| 43 "//google_apis/gcm", | 44 "//google_apis/gcm", |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 } | 124 } |
| 124 | 125 |
| 125 if (is_linux) { | 126 if (is_linux) { |
| 126 deps += [ | 127 deps += [ |
| 127 "//dbus", | 128 "//dbus", |
| 128 "//third_party/fontconfig", | 129 "//third_party/fontconfig", |
| 129 "//third_party/freetype2", | 130 "//third_party/freetype2", |
| 130 ] | 131 ] |
| 131 } | 132 } |
| 132 | 133 |
| 134 if (use_x11) { |
| 135 deps += [ "//tools/xdisplaycheck" ] |
| 136 } |
| 137 |
| 133 if (is_win) { | 138 if (is_win) { |
| 134 deps += [ | 139 deps += [ |
| 135 "//ui/metro_viewer", | 140 "//ui/metro_viewer", |
| 136 ] | 141 ] |
| 137 } | 142 } |
| 138 | 143 |
| 139 if (is_win || is_mac || is_chromeos) { | 144 if (is_win || is_mac || is_chromeos) { |
| 140 # RLZ works on these platforms. | 145 # RLZ works on these platforms. |
| 141 deps += [ | 146 deps += [ |
| 142 "//rlz:rlz_lib", | 147 "//rlz:rlz_lib", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 158 "//chrome/browser", # Blocked on content. | 163 "//chrome/browser", # Blocked on content. |
| 159 "//chrome/browser/devtools", # Blocked on content. | 164 "//chrome/browser/devtools", # Blocked on content. |
| 160 "//chrome/browser/ui", # Blocked on content. | 165 "//chrome/browser/ui", # Blocked on content. |
| 161 "//chrome/browser/ui/views", # Blocked on content. | 166 "//chrome/browser/ui/views", # Blocked on content. |
| 162 "//chrome/common", # Blocked on content. | 167 "//chrome/common", # Blocked on content. |
| 163 "//chrome/plugin", # Blocked on content. | 168 "//chrome/plugin", # Blocked on content. |
| 164 "//chrome/renderer", # Blocked on content. | 169 "//chrome/renderer", # Blocked on content. |
| 165 "//chrome/service", # Blocked on content. | 170 "//chrome/service", # Blocked on content. |
| 166 "//chrome/utility", # Blocked on content. | 171 "//chrome/utility", # Blocked on content. |
| 167 "//content", | 172 "//content", |
| 173 "//content/shell:content_shell", # Blocked on content. |
| 168 "//extensions/common", | 174 "//extensions/common", |
| 169 "//extensions/common/api", | 175 "//extensions/common/api", |
| 170 "//pdf", # Not compiled on Android in GYP yet, either. | 176 "//pdf", # Not compiled on Android in GYP yet, either. |
| 171 "//ppapi:ppapi_c", | 177 "//ppapi:ppapi_c", |
| 172 "//sandbox", | 178 "//sandbox", |
| 173 "//third_party/libusb", | 179 "//third_party/libusb", |
| 174 "//ui/keyboard", # Blocked on content. | 180 "//ui/keyboard", # Blocked on content. |
| 175 | 181 |
| 176 # Seems to not be compiled on Android. Otherwise it will need a config.h. | 182 # Seems to not be compiled on Android. Otherwise it will need a config.h. |
| 177 "//third_party/libxslt", | 183 "//third_party/libxslt", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 204 ] | 210 ] |
| 205 } | 211 } |
| 206 | 212 |
| 207 if (use_ozone) { | 213 if (use_ozone) { |
| 208 deps += [ | 214 deps += [ |
| 209 "//ui/events/ozone:events_ozone", | 215 "//ui/events/ozone:events_ozone", |
| 210 "//ui/events/ozone:events_ozone_evdev", | 216 "//ui/events/ozone:events_ozone_evdev", |
| 211 ] | 217 ] |
| 212 } | 218 } |
| 213 } | 219 } |
| OLD | NEW |