| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 'cache_util.cc', | 59 'cache_util.cc', |
| 60 'cache_util.h', | 60 'cache_util.h', |
| 61 'crypto/key_systems.cc', | 61 'crypto/key_systems.cc', |
| 62 'crypto/key_systems.h', | 62 'crypto/key_systems.h', |
| 63 'crypto/key_systems_info.cc', | 63 'crypto/key_systems_info.cc', |
| 64 'crypto/key_systems_info.h', | 64 'crypto/key_systems_info.h', |
| 65 'crypto/ppapi_decryptor.cc', | 65 'crypto/ppapi_decryptor.cc', |
| 66 'crypto/ppapi_decryptor.h', | 66 'crypto/ppapi_decryptor.h', |
| 67 'crypto/proxy_decryptor.cc', | 67 'crypto/proxy_decryptor.cc', |
| 68 'crypto/proxy_decryptor.h', | 68 'crypto/proxy_decryptor.h', |
| 69 'media_info_loader.cc', |
| 70 'media_info_loader.h', |
| 69 'media_stream_audio_renderer.cc', | 71 'media_stream_audio_renderer.cc', |
| 70 'media_stream_audio_renderer.h', | 72 'media_stream_audio_renderer.h', |
| 71 'media_stream_client.h', | 73 'media_stream_client.h', |
| 72 'preload.h', | 74 'preload.h', |
| 73 'simple_video_frame_provider.cc', | 75 'simple_video_frame_provider.cc', |
| 74 'simple_video_frame_provider.h', | 76 'simple_video_frame_provider.h', |
| 75 'texttrack_impl.cc', | 77 'texttrack_impl.cc', |
| 76 'texttrack_impl.h', | 78 'texttrack_impl.h', |
| 77 'video_frame_provider.cc', | 79 'video_frame_provider.cc', |
| 78 'video_frame_provider.h', | 80 'video_frame_provider.h', |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 '-Wl,-exported_symbol,_PPP_InitializeModule', | 239 '-Wl,-exported_symbol,_PPP_InitializeModule', |
| 238 '-Wl,-exported_symbol,_PPP_ShutdownModule' | 240 '-Wl,-exported_symbol,_PPP_ShutdownModule' |
| 239 ], | 241 ], |
| 240 'DYLIB_INSTALL_NAME_BASE': '@loader_path', | 242 'DYLIB_INSTALL_NAME_BASE': '@loader_path', |
| 241 }, | 243 }, |
| 242 }], | 244 }], |
| 243 ], | 245 ], |
| 244 } | 246 } |
| 245 ], | 247 ], |
| 246 } | 248 } |
| OLD | NEW |