Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(680)

Unified Diff: webkit/media/webkit_media.gypi

Issue 10837252: Update CDM interface and add clear key CDM. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge "ppapi_cdm_wrapper" target into "clearkeycdmplugin". Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/media/crypto/ppapi/content_decryption_module.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/media/webkit_media.gypi
diff --git a/webkit/media/webkit_media.gypi b/webkit/media/webkit_media.gypi
index 834ba487a5fb203a13e7b427ce37d5944eef83ff..7ac9b9b6da8fa6a412fcab4ab3b3740a81a90588 100644
--- a/webkit/media/webkit_media.gypi
+++ b/webkit/media/webkit_media.gypi
@@ -84,10 +84,27 @@
],
},
{
- 'target_name': 'ppapi_cdm_wrapper',
+ 'target_name': 'clearkeycdm',
+ 'type': 'shared_library',
+ 'defines': ['CDM_IMPLEMENTATION'],
+ 'dependencies': [
+ '<(DEPTH)/base/base.gyp:base',
+ '<(DEPTH)/media/media.gyp:media'
+ ],
+ 'sources': [
+ 'crypto/ppapi/clear_key_cdm.cc',
+ 'crypto/ppapi/clear_key_cdm.h',
+ ],
+ },
+ {
+ 'target_name': 'clearkeycdmplugin',
'type': 'none',
'dependencies': [
- '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp'
+ '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp',
+ 'clearkeycdm',
+ ],
+ 'sources': [
+ 'crypto/ppapi/cdm_wrapper.cc',
],
'conditions': [
['os_posix==1 and OS!="mac"', {
@@ -113,9 +130,6 @@
]},
}],
],
- 'sources': [
- 'crypto/ppapi/cdm_wrapper.cc',
- ],
}
],
}
« no previous file with comments | « webkit/media/crypto/ppapi/content_decryption_module.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698