diff options
author | ddorwin@chromium.org <ddorwin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-25 03:17:03 +0000 |
---|---|---|
committer | ddorwin@chromium.org <ddorwin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-25 03:17:03 +0000 |
commit | a94db58105db598baaea41bb5fab0479e3203664 (patch) | |
tree | 16c8df0aba36205772bdf19b61b0c607a6ec245b /third_party | |
parent | 3cbb45b85ed12ba7ffa31e7b3acfb49e1cfccc1c (diff) | |
download | chromium_src-a94db58105db598baaea41bb5fab0479e3203664.zip chromium_src-a94db58105db598baaea41bb5fab0479e3203664.tar.gz chromium_src-a94db58105db598baaea41bb5fab0479e3203664.tar.bz2 |
Fix copying of Widevine CDM binaries on official Mac builds.
Xcode strips all files by default, and this needs to be disabled for this target.
BUG=238742
TBR=xhwang@chromium.org
Review URL: https://codereview.chromium.org/17590013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@208372 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/widevine/cdm/widevine_cdm.gyp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/third_party/widevine/cdm/widevine_cdm.gyp b/third_party/widevine/cdm/widevine_cdm.gyp index 17b29da..aa4bdc6 100644 --- a/third_party/widevine/cdm/widevine_cdm.gyp +++ b/third_party/widevine/cdm/widevine_cdm.gyp @@ -112,6 +112,13 @@ { 'target_name': 'widevine_cdm_binaries', 'type': 'none', + 'conditions': [ + [ 'OS=="mac"', { + 'xcode_settings': { + 'COPY_PHASE_STRIP': 'NO', + } + }], + ], 'copies': [{ # TODO(ddorwin): Do we need a sub-directory? We either need a # sub-directory or to rename manifest.json before we can copy it. |