| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 'crypto/ppapi_decryptor.cc', | 64 'crypto/ppapi_decryptor.cc', |
| 65 'crypto/ppapi_decryptor.h', | 65 'crypto/ppapi_decryptor.h', |
| 66 'crypto/proxy_decryptor.cc', | 66 'crypto/proxy_decryptor.cc', |
| 67 'crypto/proxy_decryptor.h', | 67 'crypto/proxy_decryptor.h', |
| 68 'media_stream_audio_renderer.cc', | 68 'media_stream_audio_renderer.cc', |
| 69 'media_stream_audio_renderer.h', | 69 'media_stream_audio_renderer.h', |
| 70 'media_stream_client.h', | 70 'media_stream_client.h', |
| 71 'preload.h', | 71 'preload.h', |
| 72 'simple_video_frame_provider.cc', | 72 'simple_video_frame_provider.cc', |
| 73 'simple_video_frame_provider.h', | 73 'simple_video_frame_provider.h', |
| 74 'texttrack_impl.cc', |
| 75 'texttrack_impl.h', |
| 74 'video_frame_provider.cc', | 76 'video_frame_provider.cc', |
| 75 'video_frame_provider.h', | 77 'video_frame_provider.h', |
| 76 'webaudiosourceprovider_impl.cc', | 78 'webaudiosourceprovider_impl.cc', |
| 77 'webaudiosourceprovider_impl.h', | 79 'webaudiosourceprovider_impl.h', |
| 80 'webinbandtexttrack_impl.cc', |
| 81 'webinbandtexttrack_impl.h', |
| 78 'webmediaplayer_delegate.h', | 82 'webmediaplayer_delegate.h', |
| 79 'webmediaplayer_impl.cc', | 83 'webmediaplayer_impl.cc', |
| 80 'webmediaplayer_impl.h', | 84 'webmediaplayer_impl.h', |
| 81 'webmediaplayer_ms.cc', | 85 'webmediaplayer_ms.cc', |
| 82 'webmediaplayer_ms.h', | 86 'webmediaplayer_ms.h', |
| 83 'webmediaplayer_params.cc', | 87 'webmediaplayer_params.cc', |
| 84 'webmediaplayer_params.h', | 88 'webmediaplayer_params.h', |
| 85 'webmediaplayer_util.cc', | 89 'webmediaplayer_util.cc', |
| 86 'webmediaplayer_util.h', | 90 'webmediaplayer_util.h', |
| 87 'webmediasourceclient_impl.cc', | 91 'webmediasourceclient_impl.cc', |
| 88 'webmediasourceclient_impl.h', | 92 'webmediasourceclient_impl.h', |
| 89 'websourcebuffer_impl.cc', | 93 'websourcebuffer_impl.cc', |
| 90 'websourcebuffer_impl.h', | 94 'websourcebuffer_impl.h' |
| 91 ], | 95 ], |
| 92 'conditions': [ | 96 'conditions': [ |
| 93 ['OS == "android"', { | 97 ['OS == "android"', { |
| 94 'sources!': [ | 98 'sources!': [ |
| 95 'audio_decoder.cc', | 99 'audio_decoder.cc', |
| 96 'audio_decoder.h', | 100 'audio_decoder.h', |
| 97 'filter_helpers.cc', | 101 'filter_helpers.cc', |
| 98 'filter_helpers.h', | 102 'filter_helpers.h', |
| 99 'webmediaplayer_impl.cc', | 103 'webmediaplayer_impl.cc', |
| 100 'webmediaplayer_impl.h', | 104 'webmediaplayer_impl.h', |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 '-Wl,-exported_symbol,_PPP_InitializeModule', | 233 '-Wl,-exported_symbol,_PPP_InitializeModule', |
| 230 '-Wl,-exported_symbol,_PPP_ShutdownModule' | 234 '-Wl,-exported_symbol,_PPP_ShutdownModule' |
| 231 ], | 235 ], |
| 232 'DYLIB_INSTALL_NAME_BASE': '@loader_path', | 236 'DYLIB_INSTALL_NAME_BASE': '@loader_path', |
| 233 }, | 237 }, |
| 234 }], | 238 }], |
| 235 ], | 239 ], |
| 236 } | 240 } |
| 237 ], | 241 ], |
| 238 } | 242 } |
| OLD | NEW |