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

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

Issue 11778079: Encrypted Media: Enforcing the CDM to decode audio into S16 integers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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
« no previous file with comments | « webkit/media/crypto/ppapi/ffmpeg_cdm_audio_decoder.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['inside_chromium_build==0', { 8 ['inside_chromium_build==0', {
9 'webkit_src_dir': '../../../../..', 9 'webkit_src_dir': '../../../../..',
10 },{ 10 },{
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 ['os_posix == 1 and OS != "mac"', { 167 ['os_posix == 1 and OS != "mac"', {
168 'type': 'loadable_module', # Must be in PRODUCT_DIR for ASAN bots. 168 'type': 'loadable_module', # Must be in PRODUCT_DIR for ASAN bots.
169 }, { # 'os_posix != 1 or OS == "mac"' 169 }, { # 'os_posix != 1 or OS == "mac"'
170 'type': 'shared_library', 170 'type': 'shared_library',
171 }], 171 }],
172 ], 172 ],
173 'defines': ['CDM_IMPLEMENTATION'], 173 'defines': ['CDM_IMPLEMENTATION'],
174 'dependencies': [ 174 'dependencies': [
175 '<(DEPTH)/base/base.gyp:base', 175 '<(DEPTH)/base/base.gyp:base',
176 '<(DEPTH)/media/media.gyp:media', 176 '<(DEPTH)/media/media.gyp:media',
177 # Include the following for media::AudioBus.
178 '<(DEPTH)/media/media.gyp:shared_memory_support',
177 ], 179 ],
178 'sources': [ 180 'sources': [
179 'crypto/ppapi/cdm_video_decoder.cc', 181 'crypto/ppapi/cdm_video_decoder.cc',
180 'crypto/ppapi/cdm_video_decoder.h', 182 'crypto/ppapi/cdm_video_decoder.h',
181 'crypto/ppapi/clear_key_cdm.cc', 183 'crypto/ppapi/clear_key_cdm.cc',
182 'crypto/ppapi/clear_key_cdm.h', 184 'crypto/ppapi/clear_key_cdm.h',
183 ], 185 ],
184 }, 186 },
185 { 187 {
186 'target_name': 'clearkeycdmplugin', 188 'target_name': 'clearkeycdmplugin',
(...skipping 30 matching lines...) Expand all
217 # Not to strip important symbols by -Wl,-dead_strip. 219 # Not to strip important symbols by -Wl,-dead_strip.
218 '-Wl,-exported_symbol,_PPP_GetInterface', 220 '-Wl,-exported_symbol,_PPP_GetInterface',
219 '-Wl,-exported_symbol,_PPP_InitializeModule', 221 '-Wl,-exported_symbol,_PPP_InitializeModule',
220 '-Wl,-exported_symbol,_PPP_ShutdownModule' 222 '-Wl,-exported_symbol,_PPP_ShutdownModule'
221 ]}, 223 ]},
222 }], 224 }],
223 ], 225 ],
224 } 226 }
225 ], 227 ],
226 } 228 }
OLDNEW
« no previous file with comments | « webkit/media/crypto/ppapi/ffmpeg_cdm_audio_decoder.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698