OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |