21 lines
1.2 KiB
Diff
21 lines
1.2 KiB
Diff
|
diff -up chromium-92.0.4515.107/chrome/common/chrome_paths.cc.widevine-other-locations chromium-92.0.4515.107/chrome/common/chrome_paths.cc
|
||
|
--- chromium-92.0.4515.107/chrome/common/chrome_paths.cc.widevine-other-locations 2021-07-26 16:50:41.815065696 -0400
|
||
|
+++ chromium-92.0.4515.107/chrome/common/chrome_paths.cc 2021-07-26 16:58:08.334868284 -0400
|
||
|
@@ -313,6 +313,16 @@ bool PathProvider(int key, base::FilePat
|
||
|
|
||
|
#if BUILDFLAG(ENABLE_WIDEVINE)
|
||
|
case chrome::DIR_BUNDLED_WIDEVINE_CDM:
|
||
|
+ base::PathService::Get(base::DIR_HOME, &cur);
|
||
|
+ cur = cur.Append(FILE_PATH_LITERAL(".local/lib/libwidevinecdm.so"));
|
||
|
+ if (base::PathExists(cur)) {
|
||
|
+ break;
|
||
|
+ }
|
||
|
+ // Yes, this has an arch hardcoded in the path, but at this time, it is the only place to find libwidevinecdm.so
|
||
|
+ if (base::PathExists(base::FilePath(FILE_PATH_LITERAL("/opt/google/chrome/WidevineCdm/_platform_specific/linux_x64/libwidevinecdm.so")))) {
|
||
|
+ cur = base::FilePath(FILE_PATH_LITERAL("/opt/google/chrome/WidevineCdm/_platform_specific/linux_x64/libwidevinecdm.so"));
|
||
|
+ break;
|
||
|
+ }
|
||
|
if (!GetComponentDirectory(&cur))
|
||
|
return false;
|
||
|
#if !BUILDFLAG(IS_CHROMEOS_ASH)
|