| 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', | |
| 20 'android/media_metadata_android.h', | |
| 21 'android/media_player_bridge_manager_impl.cc', | 19 'android/media_player_bridge_manager_impl.cc', |
| 22 'android/media_player_bridge_manager_impl.h', | 20 'android/media_player_bridge_manager_impl.h', |
| 23 'android/stream_texture_factory_android.h', | 21 'android/stream_texture_factory_android.h', |
| 24 'android/webmediaplayer_android.cc', | 22 'android/webmediaplayer_android.cc', |
| 25 'android/webmediaplayer_android.h', | 23 'android/webmediaplayer_android.h', |
| 26 'android/webmediaplayer_impl_android.cc', | 24 'android/webmediaplayer_impl_android.cc', |
| 27 'android/webmediaplayer_impl_android.h', | 25 'android/webmediaplayer_impl_android.h', |
| 28 'android/webmediaplayer_in_process_android.cc', | 26 'android/webmediaplayer_in_process_android.cc', |
| 29 'android/webmediaplayer_in_process_android.h', | 27 'android/webmediaplayer_in_process_android.h', |
| 30 'android/webmediaplayer_manager_android.cc', | 28 'android/webmediaplayer_manager_android.cc', |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 # Not to strip important symbols by -Wl,-dead_strip. | 139 # Not to strip important symbols by -Wl,-dead_strip. |
| 142 '-Wl,-exported_symbol,_PPP_GetInterface', | 140 '-Wl,-exported_symbol,_PPP_GetInterface', |
| 143 '-Wl,-exported_symbol,_PPP_InitializeModule', | 141 '-Wl,-exported_symbol,_PPP_InitializeModule', |
| 144 '-Wl,-exported_symbol,_PPP_ShutdownModule' | 142 '-Wl,-exported_symbol,_PPP_ShutdownModule' |
| 145 ]}, | 143 ]}, |
| 146 }], | 144 }], |
| 147 ], | 145 ], |
| 148 } | 146 } |
| 149 ], | 147 ], |
| 150 } | 148 } |
| OLD | NEW |