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

Side by Side Diff: webkit/media/webkit_media.gypi

Issue 10899021: Add CDM video decoder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add media library initialization. Created 8 years, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'webkit_media', 8 'target_name': 'webkit_media',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 ], 98 ],
99 }], 99 }],
100 ], 100 ],
101 }, 101 },
102 { 102 {
103 'target_name': 'clearkeycdm', 103 'target_name': 'clearkeycdm',
104 'type': 'shared_library', 104 'type': 'shared_library',
105 'defines': ['CDM_IMPLEMENTATION'], 105 'defines': ['CDM_IMPLEMENTATION'],
106 'dependencies': [ 106 'dependencies': [
107 '<(DEPTH)/base/base.gyp:base', 107 '<(DEPTH)/base/base.gyp:base',
108 '<(DEPTH)/media/media.gyp:media' 108 '<(DEPTH)/media/media.gyp:media',
109 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
109 ], 110 ],
110 'sources': [ 111 'sources': [
111 'crypto/ppapi/clear_key_cdm.cc', 112 'crypto/ppapi/clear_key_cdm.cc',
112 'crypto/ppapi/clear_key_cdm.h', 113 'crypto/ppapi/clear_key_cdm.h',
114 'crypto/ppapi/ffmpeg_cdm_video_decoder.cc',
115 'crypto/ppapi/ffmpeg_cdm_video_decoder.h',
113 ], 116 ],
114 }, 117 },
115 { 118 {
116 'target_name': 'clearkeycdmplugin', 119 'target_name': 'clearkeycdmplugin',
117 'type': 'none', 120 'type': 'none',
118 'dependencies': [ 121 'dependencies': [
119 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp', 122 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp',
120 'clearkeycdm', 123 'clearkeycdm',
121 ], 124 ],
122 'sources': [ 125 'sources': [
(...skipping 23 matching lines...) Expand all
146 # Not to strip important symbols by -Wl,-dead_strip. 149 # Not to strip important symbols by -Wl,-dead_strip.
147 '-Wl,-exported_symbol,_PPP_GetInterface', 150 '-Wl,-exported_symbol,_PPP_GetInterface',
148 '-Wl,-exported_symbol,_PPP_InitializeModule', 151 '-Wl,-exported_symbol,_PPP_InitializeModule',
149 '-Wl,-exported_symbol,_PPP_ShutdownModule' 152 '-Wl,-exported_symbol,_PPP_ShutdownModule'
150 ]}, 153 ]},
151 }], 154 }],
152 ], 155 ],
153 } 156 }
154 ], 157 ],
155 } 158 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698