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

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

Issue 10918052: create a separate WebMediaPlayer for URL derived from media stream (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: code review Created 8 years, 2 months 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
« no previous file with comments | « webkit/media/video_frame_provider.cc ('k') | webkit/media/webmediaplayer_ms.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'webkit_media', 8 'target_name': 'webkit_media',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 'crypto/key_systems.cc', 44 'crypto/key_systems.cc',
45 'crypto/key_systems.h', 45 'crypto/key_systems.h',
46 'crypto/ppapi_decryptor.cc', 46 'crypto/ppapi_decryptor.cc',
47 'crypto/ppapi_decryptor.h', 47 'crypto/ppapi_decryptor.h',
48 'crypto/proxy_decryptor.cc', 48 'crypto/proxy_decryptor.cc',
49 'crypto/proxy_decryptor.h', 49 'crypto/proxy_decryptor.h',
50 'filter_helpers.cc', 50 'filter_helpers.cc',
51 'filter_helpers.h', 51 'filter_helpers.h',
52 'media_stream_client.h', 52 'media_stream_client.h',
53 'preload.h', 53 'preload.h',
54 'simple_video_frame_provider.cc',
55 'simple_video_frame_provider.h',
54 'skcanvas_video_renderer.cc', 56 'skcanvas_video_renderer.cc',
55 'skcanvas_video_renderer.h', 57 'skcanvas_video_renderer.h',
58 'video_frame_provider.cc',
59 'video_frame_provider.h',
56 'webmediaplayer_delegate.h', 60 'webmediaplayer_delegate.h',
57 'webmediaplayer_impl.cc', 61 'webmediaplayer_impl.cc',
58 'webmediaplayer_impl.h', 62 'webmediaplayer_impl.h',
63 'webmediaplayer_ms.cc',
64 'webmediaplayer_ms.h',
59 'webmediaplayer_proxy.cc', 65 'webmediaplayer_proxy.cc',
60 'webmediaplayer_proxy.h', 66 'webmediaplayer_proxy.h',
61 'webmediaplayer_util.cc', 67 'webmediaplayer_util.cc',
62 'webmediaplayer_util.h', 68 'webmediaplayer_util.h',
63 'webvideoframe_impl.cc', 69 'webvideoframe_impl.cc',
64 'webvideoframe_impl.h', 70 'webvideoframe_impl.h',
65 ], 71 ],
66 'conditions': [ 72 'conditions': [
67 ['inside_chromium_build==0', { 73 ['inside_chromium_build==0', {
68 'dependencies': [ 74 'dependencies': [
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 # Not to strip important symbols by -Wl,-dead_strip. 141 # Not to strip important symbols by -Wl,-dead_strip.
136 '-Wl,-exported_symbol,_PPP_GetInterface', 142 '-Wl,-exported_symbol,_PPP_GetInterface',
137 '-Wl,-exported_symbol,_PPP_InitializeModule', 143 '-Wl,-exported_symbol,_PPP_InitializeModule',
138 '-Wl,-exported_symbol,_PPP_ShutdownModule' 144 '-Wl,-exported_symbol,_PPP_ShutdownModule'
139 ]}, 145 ]},
140 }], 146 }],
141 ], 147 ],
142 } 148 }
143 ], 149 ],
144 } 150 }
OLDNEW
« no previous file with comments | « webkit/media/video_frame_provider.cc ('k') | webkit/media/webmediaplayer_ms.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698