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

Unified Diff: media/media_cdm.gypi

Issue 22362007: Relocate last remnants of webkit/renderer/media code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make chromeos crypto dep explicit. Created 7 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 | « media/media.gyp ('k') | ppapi/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/media_cdm.gypi
diff --git a/webkit/renderer/media/webkit_media.gypi b/media/media_cdm.gypi
similarity index 82%
rename from webkit/renderer/media/webkit_media.gypi
rename to media/media_cdm.gypi
index 198ebfee05137b6b551f33de2e8afe63a85d9b38..a4a94f79dbf325c281a63daf5c9081b6c3196a9b 100644
--- a/webkit/renderer/media/webkit_media.gypi
+++ b/media/media_cdm.gypi
@@ -29,8 +29,8 @@
['use_fake_video_decoder == 1' , {
'defines': ['CLEAR_KEY_CDM_USE_FAKE_VIDEO_DECODER'],
'sources': [
- 'crypto/ppapi/fake_cdm_video_decoder.cc',
- 'crypto/ppapi/fake_cdm_video_decoder.h',
+ 'cdm/ppapi/fake_cdm_video_decoder.cc',
+ 'cdm/ppapi/fake_cdm_video_decoder.h',
],
}],
['use_ffmpeg == 1' , {
@@ -39,14 +39,14 @@
'<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
],
'sources': [
- 'crypto/ppapi/ffmpeg_cdm_audio_decoder.cc',
- 'crypto/ppapi/ffmpeg_cdm_audio_decoder.h',
+ 'cdm/ppapi/ffmpeg_cdm_audio_decoder.cc',
+ 'cdm/ppapi/ffmpeg_cdm_audio_decoder.h',
],
}],
['use_ffmpeg == 1 and use_fake_video_decoder == 0' , {
'sources': [
- 'crypto/ppapi/ffmpeg_cdm_video_decoder.cc',
- 'crypto/ppapi/ffmpeg_cdm_video_decoder.h',
+ 'cdm/ppapi/ffmpeg_cdm_video_decoder.cc',
+ 'cdm/ppapi/ffmpeg_cdm_video_decoder.h',
],
}],
['use_libvpx == 1 and use_fake_video_decoder == 0' , {
@@ -55,8 +55,8 @@
'<(DEPTH)/third_party/libvpx/libvpx.gyp:libvpx',
],
'sources': [
- 'crypto/ppapi/libvpx_cdm_video_decoder.cc',
- 'crypto/ppapi/libvpx_cdm_video_decoder.h',
+ 'cdm/ppapi/libvpx_cdm_video_decoder.cc',
+ 'cdm/ppapi/libvpx_cdm_video_decoder.h',
],
}],
['os_posix == 1 and OS != "mac" and enable_pepper_cdms==1', {
@@ -73,16 +73,16 @@
],
'defines': ['CDM_IMPLEMENTATION'],
'dependencies': [
- '<(DEPTH)/base/base.gyp:base',
- '<(DEPTH)/media/media.gyp:media',
+ 'media',
# Include the following for media::AudioBus.
- '<(DEPTH)/media/media.gyp:shared_memory_support',
+ 'shared_memory_support',
+ '<(DEPTH)/base/base.gyp:base',
],
'sources': [
- 'crypto/ppapi/cdm_video_decoder.cc',
- 'crypto/ppapi/cdm_video_decoder.h',
- 'crypto/ppapi/clear_key_cdm.cc',
- 'crypto/ppapi/clear_key_cdm.h',
+ 'cdm/ppapi/cdm_video_decoder.cc',
+ 'cdm/ppapi/cdm_video_decoder.h',
+ 'cdm/ppapi/clear_key_cdm.cc',
+ 'cdm/ppapi/clear_key_cdm.h',
],
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
'msvs_disabled_warnings': [ 4267, ],
@@ -97,9 +97,9 @@
'clearkeycdm',
],
'sources': [
- 'crypto/ppapi/cdm_wrapper.cc',
- 'crypto/ppapi/cdm/content_decryption_module.h',
- 'crypto/ppapi/linked_ptr.h',
+ 'cdm/ppapi/api/content_decryption_module.h',
+ 'cdm/ppapi/cdm_wrapper.cc',
+ 'cdm/ppapi/linked_ptr.h',
],
'conditions': [
['os_posix == 1 and OS != "mac" and enable_pepper_cdms==1', {
« no previous file with comments | « media/media.gyp ('k') | ppapi/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698