Skip to content

Commit

Permalink
Disable widevine cdm component in linux
Browse files Browse the repository at this point in the history
We are not ready to use chrome's widevine cdm component updater in
linux. We are using our own widevine updater for now.
Our widevine updater should be integrated with widevine cdm component
updater.
Issue: brave/brave-browser#7081
  • Loading branch information
simonhong authored and mkarolin committed Nov 27, 2019
1 parent 9367509 commit 43a6a2b
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions patches/third_party-widevine-cdm-widevine.gni.patch
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
diff --git a/third_party/widevine/cdm/widevine.gni b/third_party/widevine/cdm/widevine.gni
index 580e5bbcfcb4e90810d9aac53a2bd03776070b92..ba6bfd659cedd4dc9b06259850e493210e332762 100644
index 580e5bbcfcb4e90810d9aac53a2bd03776070b92..ba09d096bfbe598251eeca01e9ef155f9408953c 100644
--- a/third_party/widevine/cdm/widevine.gni
+++ b/third_party/widevine/cdm/widevine.gni
@@ -37,6 +37,9 @@ enable_widevine_cdm_component =
@@ -37,6 +37,8 @@ enable_widevine_cdm_component =

# Widevine CDM is bundled as part of Google Chrome builds.
bundle_widevine_cdm = enable_library_widevine_cdm && is_chrome_branded
+if (brave_chromium_build) {
+ bundle_widevine_cdm = enable_library_widevine_cdm && is_desktop_linux
+}
+bundle_widevine_cdm = enable_library_widevine_cdm && is_desktop_linux
+enable_widevine_cdm_component = enable_library_widevine_cdm && (is_win || is_mac)

enable_widevine_cdm_host_verification =
enable_library_widevine_cdm && enable_cdm_host_verification

0 comments on commit 43a6a2b

Please sign in to comment.