Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(473)

Side by Side Diff: content/shell/BUILD.gn

Issue 2445433003: media: Enable encrypted media content browsertests when MojoCdm is used (Closed)
Patch Set: media: Enable encrypted media content browsertests when MojoCdm is used Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 "//third_party/WebKit/public:debug_devtools", 203 "//third_party/WebKit/public:debug_devtools",
204 ] 204 ]
205 205
206 if (enable_mojo_media) {
207 configs += [ "//media/mojo/services:mojo_media_config" ]
208 }
209
206 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] 210 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ]
207 211
208 public_deps = [ 212 public_deps = [
209 # This exposes all public content APIs. 213 # This exposes all public content APIs.
210 "//content/public/app:both", 214 "//content/public/app:both",
211 "//content/public/browser", 215 "//content/public/browser",
212 "//content/public/common", 216 "//content/public/common",
213 "//content/public/renderer", 217 "//content/public/renderer",
214 "//content/public/utility", 218 "//content/public/utility",
215 ] 219 ]
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
740 "{{bundle_resources_dir}}/{{source_file_part}}", 744 "{{bundle_resources_dir}}/{{source_file_part}}",
741 ] 745 ]
742 } 746 }
743 } 747 }
744 748
745 mojom("mojo_bindings") { 749 mojom("mojo_bindings") {
746 sources = [ 750 sources = [
747 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", 751 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom",
748 ] 752 ]
749 } 753 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698