| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 'crypto/content_decryption_module_factory.cc', | 51 'crypto/content_decryption_module_factory.cc', |
| 52 'crypto/content_decryption_module_factory.h', | 52 'crypto/content_decryption_module_factory.h', |
| 53 'crypto/key_systems.cc', | 53 'crypto/key_systems.cc', |
| 54 'crypto/key_systems.h', | 54 'crypto/key_systems.h', |
| 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_load_delegate.h', |
| 61 'media_stream_audio_renderer.cc', | 62 'media_stream_audio_renderer.cc', |
| 62 'media_stream_audio_renderer.h', | 63 'media_stream_audio_renderer.h', |
| 63 'media_stream_client.h', | 64 'media_stream_client.h', |
| 64 'preload.h', | 65 'preload.h', |
| 65 'simple_video_frame_provider.cc', | |
| 66 'simple_video_frame_provider.h', | |
| 67 'texttrack_impl.cc', | 66 'texttrack_impl.cc', |
| 68 'texttrack_impl.h', | 67 'texttrack_impl.h', |
| 69 'video_frame_provider.cc', | 68 'video_frame_provider.cc', |
| 70 'video_frame_provider.h', | 69 'video_frame_provider.h', |
| 71 'webaudiosourceprovider_impl.cc', | 70 'webaudiosourceprovider_impl.cc', |
| 72 'webaudiosourceprovider_impl.h', | 71 'webaudiosourceprovider_impl.h', |
| 73 'webinbandtexttrack_impl.cc', | 72 'webinbandtexttrack_impl.cc', |
| 74 'webinbandtexttrack_impl.h', | 73 'webinbandtexttrack_impl.h', |
| 75 'webmediaplayer_delegate.h', | 74 'webmediaplayer_delegate.h', |
| 76 'webmediaplayer_impl.cc', | 75 'webmediaplayer_impl.cc', |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 '-Wl,-exported_symbol,_PPP_InitializeModule', | 228 '-Wl,-exported_symbol,_PPP_InitializeModule', |
| 230 '-Wl,-exported_symbol,_PPP_ShutdownModule' | 229 '-Wl,-exported_symbol,_PPP_ShutdownModule' |
| 231 ], | 230 ], |
| 232 'DYLIB_INSTALL_NAME_BASE': '@loader_path', | 231 'DYLIB_INSTALL_NAME_BASE': '@loader_path', |
| 233 }, | 232 }, |
| 234 }], | 233 }], |
| 235 ], | 234 ], |
| 236 } | 235 } |
| 237 ], | 236 ], |
| 238 } | 237 } |
| OLD | NEW |