| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 'crypto/key_systems_info.cc', | 55 'crypto/key_systems_info.cc', |
| 56 'crypto/key_systems_info.h', | 56 'crypto/key_systems_info.h', |
| 57 'crypto/ppapi_decryptor.cc', | 57 'crypto/ppapi_decryptor.cc', |
| 58 'crypto/ppapi_decryptor.h', | 58 'crypto/ppapi_decryptor.h', |
| 59 'crypto/proxy_decryptor.cc', | 59 'crypto/proxy_decryptor.cc', |
| 60 'crypto/proxy_decryptor.h', | 60 'crypto/proxy_decryptor.h', |
| 61 'media_stream_audio_renderer.cc', | 61 'media_stream_audio_renderer.cc', |
| 62 'media_stream_audio_renderer.h', | 62 'media_stream_audio_renderer.h', |
| 63 'media_stream_client.h', | 63 'media_stream_client.h', |
| 64 'preload.h', | 64 'preload.h', |
| 65 'simple_video_frame_provider.cc', | |
| 66 'simple_video_frame_provider.h', | |
| 67 'texttrack_impl.cc', | 65 'texttrack_impl.cc', |
| 68 'texttrack_impl.h', | 66 'texttrack_impl.h', |
| 69 'video_frame_provider.cc', | 67 'video_frame_provider.cc', |
| 70 'video_frame_provider.h', | 68 'video_frame_provider.h', |
| 71 'webaudiosourceprovider_impl.cc', | 69 'webaudiosourceprovider_impl.cc', |
| 72 'webaudiosourceprovider_impl.h', | 70 'webaudiosourceprovider_impl.h', |
| 73 'webinbandtexttrack_impl.cc', | 71 'webinbandtexttrack_impl.cc', |
| 74 'webinbandtexttrack_impl.h', | 72 'webinbandtexttrack_impl.h', |
| 75 'webmediaplayer_delegate.h', | 73 'webmediaplayer_delegate.h', |
| 76 'webmediaplayer_impl.cc', | 74 'webmediaplayer_impl.cc', |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 '-Wl,-exported_symbol,_PPP_InitializeModule', | 227 '-Wl,-exported_symbol,_PPP_InitializeModule', |
| 230 '-Wl,-exported_symbol,_PPP_ShutdownModule' | 228 '-Wl,-exported_symbol,_PPP_ShutdownModule' |
| 231 ], | 229 ], |
| 232 'DYLIB_INSTALL_NAME_BASE': '@loader_path', | 230 'DYLIB_INSTALL_NAME_BASE': '@loader_path', |
| 233 }, | 231 }, |
| 234 }], | 232 }], |
| 235 ], | 233 ], |
| 236 } | 234 } |
| 237 ], | 235 ], |
| 238 } | 236 } |
| OLD | NEW |