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, }, |
(...skipping 27 matching lines...) Expand all Loading... |
38 'crypto/key_systems.cc', | 38 'crypto/key_systems.cc', |
39 'crypto/key_systems.h', | 39 'crypto/key_systems.h', |
40 'crypto/ppapi_decryptor.cc', | 40 'crypto/ppapi_decryptor.cc', |
41 'crypto/ppapi_decryptor.h', | 41 'crypto/ppapi_decryptor.h', |
42 'crypto/proxy_decryptor.cc', | 42 'crypto/proxy_decryptor.cc', |
43 'crypto/proxy_decryptor.h', | 43 'crypto/proxy_decryptor.h', |
44 'filter_helpers.cc', | 44 'filter_helpers.cc', |
45 'filter_helpers.h', | 45 'filter_helpers.h', |
46 'media_stream_client.h', | 46 'media_stream_client.h', |
47 'preload.h', | 47 'preload.h', |
| 48 'simple_video_frame_provider.cc', |
| 49 'simple_video_frame_provider.h', |
48 'skcanvas_video_renderer.cc', | 50 'skcanvas_video_renderer.cc', |
49 'skcanvas_video_renderer.h', | 51 'skcanvas_video_renderer.h', |
| 52 'video_frame_provider.cc', |
| 53 'video_frame_provider.h', |
50 'webmediaplayer_delegate.h', | 54 'webmediaplayer_delegate.h', |
51 'webmediaplayer_impl.cc', | 55 'webmediaplayer_impl.cc', |
52 'webmediaplayer_impl.h', | 56 'webmediaplayer_impl.h', |
| 57 'webmediaplayer_ms.cc', |
| 58 'webmediaplayer_ms.h', |
53 'webmediaplayer_proxy.cc', | 59 'webmediaplayer_proxy.cc', |
54 'webmediaplayer_proxy.h', | 60 'webmediaplayer_proxy.h', |
55 'webmediaplayer_util.cc', | 61 'webmediaplayer_util.cc', |
56 'webmediaplayer_util.h', | 62 'webmediaplayer_util.h', |
57 'webvideoframe_impl.cc', | 63 'webvideoframe_impl.cc', |
58 'webvideoframe_impl.h', | 64 'webvideoframe_impl.h', |
59 ], | 65 ], |
60 'conditions': [ | 66 'conditions': [ |
61 ['inside_chromium_build==0', { | 67 ['inside_chromium_build==0', { |
62 'dependencies': [ | 68 'dependencies': [ |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 # Not to strip important symbols by -Wl,-dead_strip. | 133 # Not to strip important symbols by -Wl,-dead_strip. |
128 '-Wl,-exported_symbol,_PPP_GetInterface', | 134 '-Wl,-exported_symbol,_PPP_GetInterface', |
129 '-Wl,-exported_symbol,_PPP_InitializeModule', | 135 '-Wl,-exported_symbol,_PPP_InitializeModule', |
130 '-Wl,-exported_symbol,_PPP_ShutdownModule' | 136 '-Wl,-exported_symbol,_PPP_ShutdownModule' |
131 ]}, | 137 ]}, |
132 }], | 138 }], |
133 ], | 139 ], |
134 } | 140 } |
135 ], | 141 ], |
136 } | 142 } |
OLD | NEW |