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

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

Issue 2380743004: media: Remove Browser CDM implementation (Closed)
Patch Set: media: Remove Browser CDM implementation Created 4 years, 2 months 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/ui.gni") 6 import("//build/config/ui.gni")
7 import("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//third_party/webrtc/build/webrtc.gni") 8 import("//third_party/webrtc/build/webrtc.gni")
9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
10 10
(...skipping 849 matching lines...) Expand 10 before | Expand all | Expand 10 after
860 "media/cdm/pepper_cdm_wrapper_impl.h", 860 "media/cdm/pepper_cdm_wrapper_impl.h",
861 "media/cdm/ppapi_decryptor.cc", 861 "media/cdm/ppapi_decryptor.cc",
862 "media/cdm/ppapi_decryptor.h", 862 "media/cdm/ppapi_decryptor.h",
863 ] 863 ]
864 } 864 }
865 865
866 if (enable_basic_printing || enable_print_preview) { 866 if (enable_basic_printing || enable_print_preview) {
867 deps += [ "//printing" ] 867 deps += [ "//printing" ]
868 } 868 }
869 869
870 if (enable_browser_cdms) {
871 sources += [
872 "media/cdm/proxy_media_keys.cc",
873 "media/cdm/proxy_media_keys.h",
874 "media/cdm/renderer_cdm_manager.cc",
875 "media/cdm/renderer_cdm_manager.h",
876 ]
877 }
878
879 if (enable_mojo_media) { 870 if (enable_mojo_media) {
880 sources += [ 871 sources += [
881 "media/media_interface_provider.cc", 872 "media/media_interface_provider.cc",
882 "media/media_interface_provider.h", 873 "media/media_interface_provider.h",
883 ] 874 ]
884 875
885 deps += [ 876 deps += [
886 "//media/mojo/interfaces", 877 "//media/mojo/interfaces",
887 878
888 # Defines in mojo_media_config are also pulled in here. 879 # Defines in mojo_media_config are also pulled in here.
(...skipping 22 matching lines...) Expand all
911 # For the defines in mojo_media_config. 902 # For the defines in mojo_media_config.
912 public_configs = [ "//media/mojo/services:mojo_media_config" ] 903 public_configs = [ "//media/mojo/services:mojo_media_config" ]
913 } 904 }
914 905
915 if (!is_component_build) { 906 if (!is_component_build) {
916 public_deps = [ 907 public_deps = [
917 ":renderer", 908 ":renderer",
918 ] 909 ]
919 } 910 }
920 } 911 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698