| 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 if (enable_mojo_media) { | 203 if (enable_mojo_media) { |
| 204 configs += [ "//media/mojo/services:mojo_media_config" ] | 204 configs += [ "//media/mojo/services:mojo_media_config" ] |
| 205 } | 205 } |
| 206 | 206 |
| 207 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] | 207 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] |
| 208 | 208 |
| 209 public_deps = [ | 209 public_deps = [ |
| 210 # This exposes all public content APIs. | 210 # This exposes all public content APIs. |
| 211 "//content/public/app:both", | 211 "//content/public/app:both", |
| 212 "//content/public/browser", | 212 "//content/public/browser", |
| 213 "//content/public/child", |
| 213 "//content/public/common", | 214 "//content/public/common", |
| 214 "//content/public/renderer", | 215 "//content/public/renderer", |
| 215 "//content/public/utility", | 216 "//content/public/utility", |
| 216 "//ipc", | 217 "//ipc", |
| 217 ] | 218 ] |
| 218 deps = [ | 219 deps = [ |
| 219 ":mojo_bindings", | 220 ":mojo_bindings", |
| 220 ":resources", | 221 ":resources", |
| 221 "//base", | 222 "//base", |
| 222 "//base:base_static", | 223 "//base:base_static", |
| (...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 808 data_deps += [ | 809 data_deps += [ |
| 809 "//breakpad:dump_syms", | 810 "//breakpad:dump_syms", |
| 810 "//breakpad:microdump_stackwalk", | 811 "//breakpad:microdump_stackwalk", |
| 811 "//breakpad:minidump_dump", | 812 "//breakpad:minidump_dump", |
| 812 "//breakpad:minidump_stackwalk", | 813 "//breakpad:minidump_stackwalk", |
| 813 "//breakpad:symupload", | 814 "//breakpad:symupload", |
| 814 "//tools/android/forwarder2", | 815 "//tools/android/forwarder2", |
| 815 ] | 816 ] |
| 816 } | 817 } |
| 817 } | 818 } |
| OLD | NEW |