| 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 ['OS == "android" or OS == "ios"', { | 8 ['OS == "android" or OS == "ios"', { |
| 9 # Android and iOS don't use ffmpeg. | 9 # Android and iOS don't use ffmpeg. |
| 10 'use_ffmpeg%': 0, | 10 'use_ffmpeg%': 0, |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 'crypto/ppapi_decryptor.cc', | 59 'crypto/ppapi_decryptor.cc', |
| 60 'crypto/ppapi_decryptor.h', | 60 'crypto/ppapi_decryptor.h', |
| 61 'crypto/proxy_decryptor.cc', | 61 'crypto/proxy_decryptor.cc', |
| 62 'crypto/proxy_decryptor.h', | 62 'crypto/proxy_decryptor.h', |
| 63 'filter_helpers.cc', | 63 'filter_helpers.cc', |
| 64 'filter_helpers.h', | 64 'filter_helpers.h', |
| 65 'media_stream_client.h', | 65 'media_stream_client.h', |
| 66 'preload.h', | 66 'preload.h', |
| 67 'simple_video_frame_provider.cc', | 67 'simple_video_frame_provider.cc', |
| 68 'simple_video_frame_provider.h', | 68 'simple_video_frame_provider.h', |
| 69 'skcanvas_video_renderer.cc', | |
| 70 'skcanvas_video_renderer.h', | |
| 71 'video_frame_provider.cc', | 69 'video_frame_provider.cc', |
| 72 'video_frame_provider.h', | 70 'video_frame_provider.h', |
| 73 'webmediaplayer_delegate.h', | 71 'webmediaplayer_delegate.h', |
| 74 'webmediaplayer_impl.cc', | 72 'webmediaplayer_impl.cc', |
| 75 'webmediaplayer_impl.h', | 73 'webmediaplayer_impl.h', |
| 76 'webmediaplayer_ms.cc', | 74 'webmediaplayer_ms.cc', |
| 77 'webmediaplayer_ms.h', | 75 'webmediaplayer_ms.h', |
| 78 'webmediaplayer_proxy.cc', | 76 'webmediaplayer_proxy.cc', |
| 79 'webmediaplayer_proxy.h', | 77 'webmediaplayer_proxy.h', |
| 80 'webmediaplayer_util.cc', | 78 'webmediaplayer_util.cc', |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 # Not to strip important symbols by -Wl,-dead_strip. | 166 # Not to strip important symbols by -Wl,-dead_strip. |
| 169 '-Wl,-exported_symbol,_PPP_GetInterface', | 167 '-Wl,-exported_symbol,_PPP_GetInterface', |
| 170 '-Wl,-exported_symbol,_PPP_InitializeModule', | 168 '-Wl,-exported_symbol,_PPP_InitializeModule', |
| 171 '-Wl,-exported_symbol,_PPP_ShutdownModule' | 169 '-Wl,-exported_symbol,_PPP_ShutdownModule' |
| 172 ]}, | 170 ]}, |
| 173 }], | 171 }], |
| 174 ], | 172 ], |
| 175 } | 173 } |
| 176 ], | 174 ], |
| 177 } | 175 } |
| OLD | NEW |