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

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

Issue 10387200: Suppress pause-and-buffer behavior when the HTTP response won't satisfy future requests via cache. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: %zu is win-unfriendly; use %PRIuS instead. Created 8 years, 7 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/cache_util_unittest.cc ('k') | no next file » | 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, },
11 'dependencies': [ 11 'dependencies': [
12 '<(DEPTH)/base/base.gyp:base', 12 '<(DEPTH)/base/base.gyp:base',
13 '<(DEPTH)/media/media.gyp:yuv_convert', 13 '<(DEPTH)/media/media.gyp:yuv_convert',
14 '<(DEPTH)/skia/skia.gyp:skia', 14 '<(DEPTH)/skia/skia.gyp:skia',
15 ], 15 ],
16 'sources': [ 16 'sources': [
17 'android/audio_decoder_android.cc', 17 'android/audio_decoder_android.cc',
18 'android/webmediaplayer_android.cc', 18 'android/webmediaplayer_android.cc',
19 'android/webmediaplayer_android.h', 19 'android/webmediaplayer_android.h',
20 'android/webmediaplayer_proxy_android.cc', 20 'android/webmediaplayer_proxy_android.cc',
21 'android/webmediaplayer_proxy_android.h', 21 'android/webmediaplayer_proxy_android.h',
22 'active_loader.cc', 22 'active_loader.cc',
23 'active_loader.h', 23 'active_loader.h',
24 'audio_decoder.cc', 24 'audio_decoder.cc',
25 'audio_decoder.h', 25 'audio_decoder.h',
26 'buffered_data_source.cc', 26 'buffered_data_source.cc',
27 'buffered_data_source.h', 27 'buffered_data_source.h',
28 'buffered_resource_loader.cc', 28 'buffered_resource_loader.cc',
29 'buffered_resource_loader.h', 29 'buffered_resource_loader.h',
30 'cache_util.cc',
31 'cache_util.h',
30 'filter_helpers.cc', 32 'filter_helpers.cc',
31 'filter_helpers.h', 33 'filter_helpers.h',
32 'key_systems.cc', 34 'key_systems.cc',
33 'key_systems.h', 35 'key_systems.h',
34 'media_stream_client.h', 36 'media_stream_client.h',
35 'preload.h', 37 'preload.h',
36 'skcanvas_video_renderer.cc', 38 'skcanvas_video_renderer.cc',
37 'skcanvas_video_renderer.h', 39 'skcanvas_video_renderer.h',
38 'webmediaplayer_delegate.h', 40 'webmediaplayer_delegate.h',
39 'webmediaplayer_impl.cc', 41 'webmediaplayer_impl.cc',
(...skipping 22 matching lines...) Expand all
62 ], 64 ],
63 }, { # OS != "android"' 65 }, { # OS != "android"'
64 'sources/': [ 66 'sources/': [
65 ['exclude', '^android/'], 67 ['exclude', '^android/'],
66 ], 68 ],
67 }], 69 }],
68 ], 70 ],
69 }, 71 },
70 ], 72 ],
71 } 73 }
OLDNEW
« no previous file with comments | « webkit/media/cache_util_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698