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 '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, }, |
11 'dependencies': [ | 11 'dependencies': [ |
12 '<(DEPTH)/base/base.gyp:base', | 12 '<(DEPTH)/base/base.gyp:base', |
| 13 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
13 '<(DEPTH)/media/media.gyp:shared_memory_support', | 14 '<(DEPTH)/media/media.gyp:shared_memory_support', |
14 '<(DEPTH)/media/media.gyp:yuv_convert', | 15 '<(DEPTH)/media/media.gyp:yuv_convert', |
15 '<(DEPTH)/skia/skia.gyp:skia', | 16 '<(DEPTH)/skia/skia.gyp:skia', |
16 ], | 17 ], |
17 'sources': [ | 18 'sources': [ |
18 'android/audio_decoder_android.cc', | 19 'android/audio_decoder_android.cc', |
19 'android/media_player_bridge_manager_impl.cc', | 20 'android/media_player_bridge_manager_impl.cc', |
20 'android/media_player_bridge_manager_impl.h', | 21 'android/media_player_bridge_manager_impl.h', |
21 'android/stream_texture_factory_android.h', | 22 'android/stream_texture_factory_android.h', |
22 'android/webmediaplayer_android.cc', | 23 'android/webmediaplayer_android.cc', |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 # Not to strip important symbols by -Wl,-dead_strip. | 140 # Not to strip important symbols by -Wl,-dead_strip. |
140 '-Wl,-exported_symbol,_PPP_GetInterface', | 141 '-Wl,-exported_symbol,_PPP_GetInterface', |
141 '-Wl,-exported_symbol,_PPP_InitializeModule', | 142 '-Wl,-exported_symbol,_PPP_InitializeModule', |
142 '-Wl,-exported_symbol,_PPP_ShutdownModule' | 143 '-Wl,-exported_symbol,_PPP_ShutdownModule' |
143 ]}, | 144 ]}, |
144 }], | 145 }], |
145 ], | 146 ], |
146 } | 147 } |
147 ], | 148 ], |
148 } | 149 } |
OLD | NEW |