| 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)/media/media.gyp:shared_memory_support', | 13 '<(DEPTH)/media/media.gyp:shared_memory_support', |
| 14 '<(DEPTH)/media/media.gyp:yuv_convert', | 14 '<(DEPTH)/media/media.gyp:yuv_convert', |
| 15 '<(DEPTH)/skia/skia.gyp:skia', | 15 '<(DEPTH)/skia/skia.gyp:skia', |
| 16 ], | 16 ], |
| 17 'sources': [ | 17 'sources': [ |
| 18 'android/audio_decoder_android.cc', | 18 'android/audio_decoder_android.cc', |
| 19 'android/media_metadata_android.cc', | 19 'android/media_metadata_android.cc', |
| 20 'android/media_metadata_android.h', | 20 'android/media_metadata_android.h', |
| 21 'android/media_player_bridge_manager_impl.cc', |
| 22 'android/media_player_bridge_manager_impl.h', |
| 21 'android/stream_texture_factory_android.h', | 23 'android/stream_texture_factory_android.h', |
| 22 'android/webmediaplayer_android.cc', | 24 'android/webmediaplayer_android.cc', |
| 23 'android/webmediaplayer_android.h', | 25 'android/webmediaplayer_android.h', |
| 26 'android/webmediaplayer_impl_android.cc', |
| 27 'android/webmediaplayer_impl_android.h', |
| 28 'android/webmediaplayer_in_process_android.cc', |
| 29 'android/webmediaplayer_in_process_android.h', |
| 24 'android/webmediaplayer_manager_android.cc', | 30 'android/webmediaplayer_manager_android.cc', |
| 25 'android/webmediaplayer_manager_android.h', | 31 'android/webmediaplayer_manager_android.h', |
| 26 'android/webmediaplayer_proxy_android.cc', | 32 'android/webmediaplayer_proxy_android.cc', |
| 27 'android/webmediaplayer_proxy_android.h', | 33 'android/webmediaplayer_proxy_android.h', |
| 28 'active_loader.cc', | 34 'active_loader.cc', |
| 29 'active_loader.h', | 35 'active_loader.h', |
| 30 'audio_decoder.cc', | 36 'audio_decoder.cc', |
| 31 'audio_decoder.h', | 37 'audio_decoder.h', |
| 32 'buffered_data_source.cc', | 38 'buffered_data_source.cc', |
| 33 'buffered_data_source.h', | 39 'buffered_data_source.h', |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 # Not to strip important symbols by -Wl,-dead_strip. | 135 # Not to strip important symbols by -Wl,-dead_strip. |
| 130 '-Wl,-exported_symbol,_PPP_GetInterface', | 136 '-Wl,-exported_symbol,_PPP_GetInterface', |
| 131 '-Wl,-exported_symbol,_PPP_InitializeModule', | 137 '-Wl,-exported_symbol,_PPP_InitializeModule', |
| 132 '-Wl,-exported_symbol,_PPP_ShutdownModule' | 138 '-Wl,-exported_symbol,_PPP_ShutdownModule' |
| 133 ]}, | 139 ]}, |
| 134 }], | 140 }], |
| 135 ], | 141 ], |
| 136 } | 142 } |
| 137 ], | 143 ], |
| 138 } | 144 } |
| OLD | NEW |