Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(932)

Side by Side Diff: webkit/media/webkit_media.gypi

Issue 11270012: Adding audio support to the new webmediaplyer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressed the nits from Andrew and fixed the chromeOS testbot error Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 'cache_util.cc', 55 'cache_util.cc',
56 'cache_util.h', 56 'cache_util.h',
57 'crypto/key_systems.cc', 57 'crypto/key_systems.cc',
58 'crypto/key_systems.h', 58 'crypto/key_systems.h',
59 'crypto/ppapi_decryptor.cc', 59 'crypto/ppapi_decryptor.cc',
60 'crypto/ppapi_decryptor.h', 60 'crypto/ppapi_decryptor.h',
61 'crypto/proxy_decryptor.cc', 61 'crypto/proxy_decryptor.cc',
62 'crypto/proxy_decryptor.h', 62 'crypto/proxy_decryptor.h',
63 'filter_helpers.cc', 63 'filter_helpers.cc',
64 'filter_helpers.h', 64 'filter_helpers.h',
65 'media_stream_audio_renderer.cc',
66 'media_stream_audio_renderer.h',
65 'media_stream_client.h', 67 'media_stream_client.h',
66 'preload.h', 68 'preload.h',
67 'simple_video_frame_provider.cc', 69 'simple_video_frame_provider.cc',
68 'simple_video_frame_provider.h', 70 'simple_video_frame_provider.h',
69 'video_frame_provider.cc', 71 'video_frame_provider.cc',
70 'video_frame_provider.h', 72 'video_frame_provider.h',
71 'webmediaplayer_delegate.h', 73 'webmediaplayer_delegate.h',
72 'webmediaplayer_impl.cc', 74 'webmediaplayer_impl.cc',
73 'webmediaplayer_impl.h', 75 'webmediaplayer_impl.h',
74 'webmediaplayer_ms.cc', 76 'webmediaplayer_ms.cc',
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 # Not to strip important symbols by -Wl,-dead_strip. 176 # Not to strip important symbols by -Wl,-dead_strip.
175 '-Wl,-exported_symbol,_PPP_GetInterface', 177 '-Wl,-exported_symbol,_PPP_GetInterface',
176 '-Wl,-exported_symbol,_PPP_InitializeModule', 178 '-Wl,-exported_symbol,_PPP_InitializeModule',
177 '-Wl,-exported_symbol,_PPP_ShutdownModule' 179 '-Wl,-exported_symbol,_PPP_ShutdownModule'
178 ]}, 180 ]},
179 }], 181 }],
180 ], 182 ],
181 } 183 }
182 ], 184 ],
183 } 185 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698