-
Notifications
You must be signed in to change notification settings - Fork 893
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
browser signing is removed from `create_dist` target. Instead, build` step will do signing and generate widevine sig file. Then, those signed files and sig files will be used during the `create-dist`. This is because gn python can't use external cryptgraphy module needed by sig generator scripts. So, brave-browser `build` target will use system python for it.
- Loading branch information
Showing
6 changed files
with
59 additions
and
38 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
diff --git a/chrome/common/media/cdm_host_file_path.cc b/chrome/common/media/cdm_host_file_path.cc | ||
index cd13f95bfd55ef03654e97324d527eae5d816334..b79301f3cf9cca64da5a6257ea2ffcc539efbacf 100644 | ||
--- a/chrome/common/media/cdm_host_file_path.cc | ||
+++ b/chrome/common/media/cdm_host_file_path.cc | ||
@@ -43,7 +43,11 @@ void AddCdmHostFilePaths( | ||
#if defined(OS_WIN) | ||
|
||
static const base::FilePath::CharType* const kUnversionedFiles[] = { | ||
+#if defined(BRAVE_CHROMIUM_BUILD) | ||
+ FILE_PATH_LITERAL("brave.exe")}; | ||
+#else | ||
FILE_PATH_LITERAL("chrome.exe")}; | ||
+#endif | ||
static const base::FilePath::CharType* const kVersionedFiles[] = { | ||
FILE_PATH_LITERAL("chrome.dll"), FILE_PATH_LITERAL("chrome_child.dll")}; | ||
|
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
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
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
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