| 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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 ] | 194 ] |
| 195 | 195 |
| 196 configs += [ | 196 configs += [ |
| 197 ":content_shell_lib_warnings", | 197 ":content_shell_lib_warnings", |
| 198 "//build/config:precompiled_headers", | 198 "//build/config:precompiled_headers", |
| 199 | 199 |
| 200 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 200 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 201 "//build/config/compiler:no_size_t_to_int_warning", | 201 "//build/config/compiler:no_size_t_to_int_warning", |
| 202 ] | 202 ] |
| 203 | 203 |
| 204 if (enable_mojo_media) { |
| 205 configs += [ "//media/mojo/services:mojo_media_config" ] |
| 206 } |
| 207 |
| 204 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] | 208 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] |
| 205 | 209 |
| 206 public_deps = [ | 210 public_deps = [ |
| 207 # This exposes all public content APIs. | 211 # This exposes all public content APIs. |
| 208 "//content/public/app:both", | 212 "//content/public/app:both", |
| 209 "//content/public/browser", | 213 "//content/public/browser", |
| 210 "//content/public/common", | 214 "//content/public/common", |
| 211 "//content/public/renderer", | 215 "//content/public/renderer", |
| 212 "//content/public/utility", | 216 "//content/public/utility", |
| 213 ] | 217 ] |
| (...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 742 "{{bundle_resources_dir}}/{{source_file_part}}", | 746 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 743 ] | 747 ] |
| 744 } | 748 } |
| 745 } | 749 } |
| 746 | 750 |
| 747 mojom("mojo_bindings") { | 751 mojom("mojo_bindings") { |
| 748 sources = [ | 752 sources = [ |
| 749 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", | 753 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", |
| 750 ] | 754 ] |
| 751 } | 755 } |
| OLD | NEW |