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

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: Compiles, does nothing. Created 8 years, 3 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 ], 82 ],
83 }], 83 }],
84 ], 84 ],
85 }, 85 },
86 { 86 {
87 'target_name': 'clearkeycdm', 87 'target_name': 'clearkeycdm',
88 'type': 'shared_library', 88 'type': 'shared_library',
89 'defines': ['CDM_IMPLEMENTATION'], 89 'defines': ['CDM_IMPLEMENTATION'],
90 'dependencies': [ 90 'dependencies': [
91 '<(DEPTH)/base/base.gyp:base', 91 '<(DEPTH)/base/base.gyp:base',
92 '<(DEPTH)/media/media.gyp:media' 92 '<(DEPTH)/media/media.gyp:media',
93 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
93 ], 94 ],
94 'sources': [ 95 'sources': [
95 'crypto/ppapi/clear_key_cdm.cc', 96 'crypto/ppapi/clear_key_cdm.cc',
96 'crypto/ppapi/clear_key_cdm.h', 97 'crypto/ppapi/clear_key_cdm.h',
98 'crypto/decoders/ffmpeg_util.cc',
99 'crypto/decoders/ffmpeg_util.h',
100 'crypto/decoders/ffmpeg_video_decoder.cc',
101 'crypto/decoders/ffmpeg_video_decoder.h',
102 'crypto/decoders/video_decoder.h',
97 ], 103 ],
98 }, 104 },
99 { 105 {
100 'target_name': 'clearkeycdmplugin', 106 'target_name': 'clearkeycdmplugin',
101 'type': 'none', 107 'type': 'none',
102 'dependencies': [ 108 'dependencies': [
103 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp', 109 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp',
104 'clearkeycdm', 110 'clearkeycdm',
105 ], 111 ],
106 'sources': [ 112 'sources': [
(...skipping 19 matching lines...) Expand all
126 # Not to strip important symbols by -Wl,-dead_strip. 132 # Not to strip important symbols by -Wl,-dead_strip.
127 '-Wl,-exported_symbol,_PPP_GetInterface', 133 '-Wl,-exported_symbol,_PPP_GetInterface',
128 '-Wl,-exported_symbol,_PPP_InitializeModule', 134 '-Wl,-exported_symbol,_PPP_InitializeModule',
129 '-Wl,-exported_symbol,_PPP_ShutdownModule' 135 '-Wl,-exported_symbol,_PPP_ShutdownModule'
130 ]}, 136 ]},
131 }], 137 }],
132 ], 138 ],
133 } 139 }
134 ], 140 ],
135 } 141 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698