Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
PKGBUILDs/extra/chromium/0001-widevine-support-for-arm.patch
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
25 lines (22 sloc)
1.04 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From b412032d8f94674c59056d69087f28ad7e597a22 Mon Sep 17 00:00:00 2001 | |
| From: Kevin Mihelich <kevin@archlinuxarm.org> | |
| Date: Thu, 18 Feb 2021 19:35:58 -0700 | |
| Subject: [PATCH 1/3] widevine support for arm | |
| --- | |
| third_party/widevine/cdm/widevine.gni | 2 +- | |
| 1 file changed, 1 insertion(+), 1 deletion(-) | |
| diff --git a/third_party/widevine/cdm/widevine.gni b/third_party/widevine/cdm/widevine.gni | |
| index 45e984205885f..3cf8c290728fd 100644 | |
| --- a/third_party/widevine/cdm/widevine.gni | |
| +++ b/third_party/widevine/cdm/widevine.gni | |
| @@ -26,7 +26,7 @@ if (is_chromeos && !is_chromeos_device) { | |
| library_widevine_cdm_available = | |
| (is_chromeos && | |
| (target_cpu == "x64" || target_cpu == "arm" || target_cpu == "arm64")) || | |
| - (target_os == "linux" && target_cpu == "x64") || | |
| + (target_os == "linux" && (target_cpu == "x64" || target_cpu == "arm" || target_cpu == "arm64")) || | |
| (target_os == "mac" && (target_cpu == "x64" || target_cpu == "arm64")) || | |
| (target_os == "win" && | |
| (target_cpu == "x86" || target_cpu == "x64" || target_cpu == "arm64")) | |
| -- | |
| 2.39.1 | |