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 20 matching lines...) Expand all Loading... |
31 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 31 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
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/public/blink.gyp:blink', | 36 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
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', | |
42 'android/media_source_delegate.cc', | |
43 'android/media_source_delegate.h', | |
44 'android/stream_texture_factory_android.h', | |
45 'android/webmediaplayer_android.cc', | |
46 'android/webmediaplayer_android.h', | |
47 'android/webmediaplayer_manager_android.cc', | |
48 'android/webmediaplayer_manager_android.h', | |
49 'android/webmediaplayer_proxy_android.cc', | |
50 'android/webmediaplayer_proxy_android.h', | |
51 'android/proxy_media_keys.cc', | |
52 'android/proxy_media_keys.h', | |
53 'active_loader.cc', | 41 'active_loader.cc', |
54 'active_loader.h', | 42 'active_loader.h', |
55 'audio_decoder.cc', | 43 'audio_decoder.cc', |
56 'audio_decoder.h', | 44 'audio_decoder.h', |
57 'buffered_data_source.cc', | 45 'buffered_data_source.cc', |
58 'buffered_data_source.h', | 46 'buffered_data_source.h', |
59 'buffered_resource_loader.cc', | 47 'buffered_resource_loader.cc', |
60 'buffered_resource_loader.h', | 48 'buffered_resource_loader.h', |
61 'cache_util.cc', | 49 'cache_util.cc', |
62 'cache_util.h', | 50 'cache_util.h', |
63 'crypto/key_systems.cc', | 51 'crypto/key_systems.cc', |
64 'crypto/key_systems.h', | 52 'crypto/key_systems.h', |
65 'crypto/key_systems_info.cc', | 53 'crypto/key_systems_info.cc', |
66 'crypto/key_systems_info.h', | 54 'crypto/key_systems_info.h', |
67 'crypto/ppapi_decryptor.cc', | 55 'crypto/ppapi_decryptor.cc', |
68 'crypto/ppapi_decryptor.h', | 56 'crypto/ppapi_decryptor.h', |
69 'crypto/proxy_decryptor.cc', | 57 'crypto/proxy_decryptor.cc', |
70 'crypto/proxy_decryptor.h', | 58 'crypto/proxy_decryptor.h', |
71 'media_info_loader.cc', | |
72 'media_info_loader.h', | |
73 'media_stream_audio_renderer.cc', | 59 'media_stream_audio_renderer.cc', |
74 'media_stream_audio_renderer.h', | 60 'media_stream_audio_renderer.h', |
75 'media_stream_client.h', | 61 'media_stream_client.h', |
76 'preload.h', | 62 'preload.h', |
77 'simple_video_frame_provider.cc', | 63 'simple_video_frame_provider.cc', |
78 'simple_video_frame_provider.h', | 64 'simple_video_frame_provider.h', |
79 'texttrack_impl.cc', | 65 'texttrack_impl.cc', |
80 'texttrack_impl.h', | 66 'texttrack_impl.h', |
81 'video_frame_provider.cc', | 67 'video_frame_provider.cc', |
82 'video_frame_provider.h', | 68 'video_frame_provider.h', |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 '-Wl,-exported_symbol,_PPP_InitializeModule', | 227 '-Wl,-exported_symbol,_PPP_InitializeModule', |
242 '-Wl,-exported_symbol,_PPP_ShutdownModule' | 228 '-Wl,-exported_symbol,_PPP_ShutdownModule' |
243 ], | 229 ], |
244 'DYLIB_INSTALL_NAME_BASE': '@loader_path', | 230 'DYLIB_INSTALL_NAME_BASE': '@loader_path', |
245 }, | 231 }, |
246 }], | 232 }], |
247 ], | 233 ], |
248 } | 234 } |
249 ], | 235 ], |
250 } | 236 } |
OLD | NEW |