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

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

Issue 11568045: Replace Chromium's content_decryption_module.h with the independent DEPS'd instance. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years 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/libvpx_cdm_video_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 ['OS == "android" or OS == "ios"', { 8 ['OS == "android" or OS == "ios"', {
9 # Android and iOS don't use ffmpeg. 9 # Android and iOS don't use ffmpeg.
10 'use_ffmpeg%': 0, 10 'use_ffmpeg%': 0,
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 }, 174 },
175 { 175 {
176 'target_name': 'clearkeycdmplugin', 176 'target_name': 'clearkeycdmplugin',
177 'type': 'none', 177 'type': 'none',
178 'dependencies': [ 178 'dependencies': [
179 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp', 179 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp',
180 'clearkeycdm', 180 'clearkeycdm',
181 ], 181 ],
182 'sources': [ 182 'sources': [
183 'crypto/ppapi/cdm_wrapper.cc', 183 'crypto/ppapi/cdm_wrapper.cc',
184 'crypto/ppapi/content_decryption_module.h', 184 'crypto/ppapi/cdm/content_decryption_module.h',
185 'crypto/ppapi/linked_ptr.h', 185 'crypto/ppapi/linked_ptr.h',
186 ], 186 ],
187 'conditions': [ 187 'conditions': [
188 ['os_posix == 1 and OS != "mac"', { 188 ['os_posix == 1 and OS != "mac"', {
189 'cflags': ['-fvisibility=hidden'], 189 'cflags': ['-fvisibility=hidden'],
190 'type': 'loadable_module', 190 'type': 'loadable_module',
191 # Allow the plugin wrapper to find the CDM in the same directory. 191 # Allow the plugin wrapper to find the CDM in the same directory.
192 'ldflags': ['-Wl,-rpath=\$$ORIGIN'], 192 'ldflags': ['-Wl,-rpath=\$$ORIGIN'],
193 'libraries': [ 193 'libraries': [
194 # Built by clearkeycdm. 194 # Built by clearkeycdm.
(...skipping 12 matching lines...) Expand all
207 # Not to strip important symbols by -Wl,-dead_strip. 207 # Not to strip important symbols by -Wl,-dead_strip.
208 '-Wl,-exported_symbol,_PPP_GetInterface', 208 '-Wl,-exported_symbol,_PPP_GetInterface',
209 '-Wl,-exported_symbol,_PPP_InitializeModule', 209 '-Wl,-exported_symbol,_PPP_InitializeModule',
210 '-Wl,-exported_symbol,_PPP_ShutdownModule' 210 '-Wl,-exported_symbol,_PPP_ShutdownModule'
211 ]}, 211 ]},
212 }], 212 }],
213 ], 213 ],
214 } 214 }
215 ], 215 ],
216 } 216 }
OLDNEW
« no previous file with comments | « webkit/media/crypto/ppapi/libvpx_cdm_video_decoder.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698