| 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 "//components/navigation_metrics", | 28 "//components/navigation_metrics", |
| 29 "//components/onc", | 29 "//components/onc", |
| 30 "//components/os_crypt", | 30 "//components/os_crypt", |
| 31 "//components/query_parser", | 31 "//components/query_parser", |
| 32 "//components/resources:components_resources", | 32 "//components/resources:components_resources", |
| 33 "//components/startup_metric_utils", | 33 "//components/startup_metric_utils", |
| 34 "//components/tracing", | 34 "//components/tracing", |
| 35 "//components/translate:translate_core_browser", | 35 "//components/translate:translate_core_browser", |
| 36 "//components/translate:translate_core_common", | 36 "//components/translate:translate_core_common", |
| 37 "//components/url_matcher", | 37 "//components/url_matcher", |
| 38 "//components/user_prefs", |
| 39 "//components/visitedlink/browser", |
| 40 "//components/visitedlink/common", |
| 41 #"//components/visitedlink/renderer", # Blocked on blink |
| 38 "//content", | 42 "//content", |
| 39 "//crypto", | 43 "//crypto", |
| 40 "//extensions/common/api:extensions_api", | 44 "//extensions/common/api:extensions_api", |
| 41 "//device/usb", | 45 "//device/usb", |
| 42 "//gin", | 46 "//gin", |
| 43 "//gpu", | 47 "//gpu", |
| 44 "//google_apis", | 48 "//google_apis", |
| 45 "//ipc", | 49 "//ipc", |
| 46 "//mojo", | 50 "//mojo", |
| 47 "//mojo/common", | 51 "//mojo/common", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 | 133 |
| 130 if (cpu_arch == "x86" || cpu_arch == "x64") { | 134 if (cpu_arch == "x86" || cpu_arch == "x64") { |
| 131 # YASM is x86/x64 only. | 135 # YASM is x86/x64 only. |
| 132 deps += [ "//third_party/yasm($host_toolchain)" ] | 136 deps += [ "//third_party/yasm($host_toolchain)" ] |
| 133 } | 137 } |
| 134 | 138 |
| 135 if (is_android) { | 139 if (is_android) { |
| 136 deps -= [ | 140 deps -= [ |
| 137 "//cc", | 141 "//cc", |
| 138 "//content", | 142 "//content", |
| 143 "//components/user_prefs", # Blocked on content. |
| 144 "//components/visitedlink/browser", # Blocked on content. |
| 145 "//components/visitedlink/common", # Blocked on content. |
| 139 "//extensions/common/api:extensions_api", | 146 "//extensions/common/api:extensions_api", |
| 140 "//pdf", # Not compiled on Android in GYP yet, either. | 147 "//pdf", # Not compiled on Android in GYP yet, either. |
| 141 "//ppapi:ppapi_c", | 148 "//ppapi:ppapi_c", |
| 142 "//sandbox", | 149 "//sandbox", |
| 143 "//third_party/libusb", | 150 "//third_party/libusb", |
| 144 | 151 |
| 145 # Seems to not be compiled on Android. Otherwise it will need a config.h. | 152 # Seems to not be compiled on Android. Otherwise it will need a config.h. |
| 146 "//third_party/libxslt", | 153 "//third_party/libxslt", |
| 147 | 154 |
| 148 "//tools/gn", | 155 "//tools/gn", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 161 ] | 168 ] |
| 162 } | 169 } |
| 163 | 170 |
| 164 if (use_ozone) { | 171 if (use_ozone) { |
| 165 deps += [ | 172 deps += [ |
| 166 "//ui/events/ozone:events_ozone", | 173 "//ui/events/ozone:events_ozone", |
| 167 "//ui/events/ozone:events_ozone_evdev", | 174 "//ui/events/ozone:events_ozone_evdev", |
| 168 ] | 175 ] |
| 169 } | 176 } |
| 170 } | 177 } |
| OLD | NEW |