diff options
author | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-12 05:35:41 +0000 |
---|---|---|
committer | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-12 05:35:41 +0000 |
commit | 9d95452dc1058ce45a4c36e4c4250ee7cacec964 (patch) | |
tree | fd586a59ba5c8fa2b87e0daa105a264652120e41 /third_party/widevine | |
parent | 517713f9a37b3ec0638aa6995a68d420ef22e991 (diff) | |
download | chromium_src-9d95452dc1058ce45a4c36e4c4250ee7cacec964.zip chromium_src-9d95452dc1058ce45a4c36e4c4250ee7cacec964.tar.gz chromium_src-9d95452dc1058ce45a4c36e4c4250ee7cacec964.tar.bz2 |
Fix WidevineCDM binary name on Mac.
widevinecdm.dylib -> libwidevinecdm.dylib
BUG=180260
TEST=none
Review URL: https://chromiumcodereview.appspot.com/5754053585797120
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@211341 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/widevine')
-rw-r--r-- | third_party/widevine/cdm/widevine_cdm_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/widevine/cdm/widevine_cdm_common.h b/third_party/widevine/cdm/widevine_cdm_common.h index ec68901..7ea705c 100644 --- a/third_party/widevine/cdm/widevine_cdm_common.h +++ b/third_party/widevine/cdm/widevine_cdm_common.h @@ -28,7 +28,7 @@ const char kWidevineCdmPluginMimeTypeDescription[] = // File name of the CDM on different platforms. const char kWidevineCdmFileName[] = #if defined(OS_MACOSX) - "widevinecdm.dylib"; + "libwidevinecdm.dylib"; #elif defined(OS_WIN) "widevinecdm.dll"; #else // OS_LINUX, etc. |