| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/config/win/console_app.gni") | 8 import("//build/config/win/console_app.gni") |
| 9 import("//build/config/win/manifest.gni") | 9 import("//build/config/win/manifest.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 | 204 |
| 205 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] | 205 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] |
| 206 | 206 |
| 207 public_deps = [ | 207 public_deps = [ |
| 208 # This exposes all public content APIs. | 208 # This exposes all public content APIs. |
| 209 "//content/public/app:both", | 209 "//content/public/app:both", |
| 210 "//content/public/browser", | 210 "//content/public/browser", |
| 211 "//content/public/common", | 211 "//content/public/common", |
| 212 "//content/public/renderer", | 212 "//content/public/renderer", |
| 213 "//content/public/utility", | 213 "//content/public/utility", |
| 214 "//ipc", |
| 214 ] | 215 ] |
| 215 deps = [ | 216 deps = [ |
| 216 ":mojo_bindings", | 217 ":mojo_bindings", |
| 217 ":resources", | 218 ":resources", |
| 218 "//base", | 219 "//base", |
| 219 "//base:base_static", | 220 "//base:base_static", |
| 220 "//base/third_party/dynamic_annotations", | 221 "//base/third_party/dynamic_annotations", |
| 221 "//cc", | 222 "//cc", |
| 222 "//components/cdm/renderer", | 223 "//components/cdm/renderer", |
| 223 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", | 224 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", |
| 224 "//components/keyed_service/content", | 225 "//components/keyed_service/content", |
| 225 "//components/plugins/renderer", | 226 "//components/plugins/renderer", |
| 226 "//components/url_formatter", | 227 "//components/url_formatter", |
| 227 "//components/web_cache/renderer", | 228 "//components/web_cache/renderer", |
| 228 "//content:resources", | 229 "//content:resources", |
| 229 "//content/app/resources", | 230 "//content/app/resources", |
| 230 "//content/app/strings", | 231 "//content/app/strings", |
| 231 "//content/gpu", | 232 "//content/gpu", |
| 232 "//content/public/common:service_names", | 233 "//content/public/common:service_names", |
| 233 "//content/shell/test_runner:test_runner", | 234 "//content/shell/test_runner:test_runner", |
| 234 "//content/test:content_test_mojo_bindings", | 235 "//content/test:content_test_mojo_bindings", |
| 235 "//content/test:layouttest_support", | 236 "//content/test:layouttest_support", |
| 236 "//content/test:test_support", | 237 "//content/test:test_support", |
| 237 "//device/bluetooth", | 238 "//device/bluetooth", |
| 238 "//device/bluetooth:mocks", | 239 "//device/bluetooth:mocks", |
| 239 "//device/geolocation", | 240 "//device/geolocation", |
| 240 "//device/sensors/public/cpp:full", | 241 "//device/sensors/public/cpp:full", |
| 241 "//gin", | 242 "//gin", |
| 242 "//gpu", | 243 "//gpu", |
| 243 "//ipc", | |
| 244 "//media", | 244 "//media", |
| 245 "//media/capture", | 245 "//media/capture", |
| 246 "//mojo/edk/js", | 246 "//mojo/edk/js", |
| 247 "//net", | 247 "//net", |
| 248 "//net:net_resources", | 248 "//net:net_resources", |
| 249 "//ppapi/features", | 249 "//ppapi/features", |
| 250 "//sandbox", | 250 "//sandbox", |
| 251 "//services/service_manager/public/cpp", | 251 "//services/service_manager/public/cpp", |
| 252 "//skia", | 252 "//skia", |
| 253 "//storage/browser", | 253 "//storage/browser", |
| (...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 803 data_deps += [ | 803 data_deps += [ |
| 804 "//breakpad:dump_syms", | 804 "//breakpad:dump_syms", |
| 805 "//breakpad:microdump_stackwalk", | 805 "//breakpad:microdump_stackwalk", |
| 806 "//breakpad:minidump_dump", | 806 "//breakpad:minidump_dump", |
| 807 "//breakpad:minidump_stackwalk", | 807 "//breakpad:minidump_stackwalk", |
| 808 "//breakpad:symupload", | 808 "//breakpad:symupload", |
| 809 "//tools/android/forwarder2", | 809 "//tools/android/forwarder2", |
| 810 ] | 810 ] |
| 811 } | 811 } |
| 812 } | 812 } |
| OLD | NEW |