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

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

Issue 10914028: Add CDM allocator interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Some iteratative work plus work related to xhwang's comments. 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 ], 97 ],
98 }, 98 },
99 { 99 {
100 'target_name': 'clearkeycdmplugin', 100 'target_name': 'clearkeycdmplugin',
101 'type': 'none', 101 'type': 'none',
102 'dependencies': [ 102 'dependencies': [
103 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp', 103 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp',
104 'clearkeycdm', 104 'clearkeycdm',
105 ], 105 ],
106 'sources': [ 106 'sources': [
107 'crypto/ppapi/content_decryption_module.h',
ddorwin 2012/09/04 09:53:15 alphabetical?
Tom Finegan 2012/09/07 00:46:36 Done.
108 'crypto/ppapi/cdm_allocator.h',
107 'crypto/ppapi/cdm_wrapper.cc', 109 'crypto/ppapi/cdm_wrapper.cc',
108 ], 110 ],
109 'conditions': [ 111 'conditions': [
110 ['os_posix==1 and OS!="mac"', { 112 ['os_posix==1 and OS!="mac"', {
111 'cflags': ['-fvisibility=hidden'], 113 'cflags': ['-fvisibility=hidden'],
112 'type': 'shared_library', 114 'type': 'shared_library',
113 # -gstabs, used in the official builds, causes an ICE. Simply remove 115 # -gstabs, used in the official builds, causes an ICE. Simply remove
114 # it. 116 # it.
115 'cflags!': ['-gstabs'], 117 'cflags!': ['-gstabs'],
116 }], 118 }],
117 ['OS=="win"', { 119 ['OS=="win"', {
118 'type': 'shared_library', 120 'type': 'shared_library',
119 }], 121 }],
120 ['OS=="mac"', { 122 ['OS=="mac"', {
121 'type': 'loadable_module', 123 'type': 'loadable_module',
122 'mac_bundle': 1, 124 'mac_bundle': 1,
123 'product_extension': 'plugin', 125 'product_extension': 'plugin',
124 'xcode_settings': { 126 'xcode_settings': {
125 'OTHER_LDFLAGS': [ 127 'OTHER_LDFLAGS': [
126 # Not to strip important symbols by -Wl,-dead_strip. 128 # Not to strip important symbols by -Wl,-dead_strip.
127 '-Wl,-exported_symbol,_PPP_GetInterface', 129 '-Wl,-exported_symbol,_PPP_GetInterface',
128 '-Wl,-exported_symbol,_PPP_InitializeModule', 130 '-Wl,-exported_symbol,_PPP_InitializeModule',
129 '-Wl,-exported_symbol,_PPP_ShutdownModule' 131 '-Wl,-exported_symbol,_PPP_ShutdownModule'
130 ]}, 132 ]},
131 }], 133 }],
132 ], 134 ],
133 } 135 }
134 ], 136 ],
135 } 137 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698