| 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 21 matching lines...) Expand all Loading... |
| 32 '<(DEPTH)/cc/cc.gyp:cc', | 32 '<(DEPTH)/cc/cc.gyp:cc', |
| 33 '<(DEPTH)/media/media.gyp:media', | 33 '<(DEPTH)/media/media.gyp:media', |
| 34 '<(DEPTH)/media/media.gyp:shared_memory_support', | 34 '<(DEPTH)/media/media.gyp:shared_memory_support', |
| 35 '<(DEPTH)/skia/skia.gyp:skia', | 35 '<(DEPTH)/skia/skia.gyp:skia', |
| 36 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 36 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 37 '<(DEPTH)/third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version
_h', | 37 '<(DEPTH)/third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version
_h', |
| 38 '<(DEPTH)/webkit/renderer/compositor_bindings/compositor_bindings.gyp:we
bkit_compositor_bindings', | 38 '<(DEPTH)/webkit/renderer/compositor_bindings/compositor_bindings.gyp:we
bkit_compositor_bindings', |
| 39 ], | 39 ], |
| 40 'sources': [ | 40 'sources': [ |
| 41 'android/audio_decoder_android.cc', | 41 'android/audio_decoder_android.cc', |
| 42 'android/media_info_loader_android.cc', |
| 43 'android/media_info_loader_android.h', |
| 42 'android/media_source_delegate.cc', | 44 'android/media_source_delegate.cc', |
| 43 'android/media_source_delegate.h', | 45 'android/media_source_delegate.h', |
| 44 'android/stream_texture_factory_android.h', | 46 'android/stream_texture_factory_android.h', |
| 45 'android/webmediaplayer_android.cc', | 47 'android/webmediaplayer_android.cc', |
| 46 'android/webmediaplayer_android.h', | 48 'android/webmediaplayer_android.h', |
| 47 'android/webmediaplayer_manager_android.cc', | 49 'android/webmediaplayer_manager_android.cc', |
| 48 'android/webmediaplayer_manager_android.h', | 50 'android/webmediaplayer_manager_android.h', |
| 49 'android/webmediaplayer_proxy_android.cc', | 51 'android/webmediaplayer_proxy_android.cc', |
| 50 'android/webmediaplayer_proxy_android.h', | 52 'android/webmediaplayer_proxy_android.h', |
| 51 'active_loader.cc', | 53 'active_loader.cc', |
| (...skipping 185 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 |