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

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

Issue 8844005: Don't attempt to decode audio data for Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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/audio_decoder_android.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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'active_loader.cc', 17 'active_loader.cc',
18 'active_loader.h', 18 'active_loader.h',
19 'audio_decoder.cc', 19 'audio_decoder.cc',
20 'audio_decoder.h', 20 'audio_decoder.h',
21 'audio_decoder_android.cc',
21 'buffered_data_source.cc', 22 'buffered_data_source.cc',
22 'buffered_data_source.h', 23 'buffered_data_source.h',
23 'buffered_resource_loader.cc', 24 'buffered_resource_loader.cc',
24 'buffered_resource_loader.h', 25 'buffered_resource_loader.h',
25 'media_stream_client.h', 26 'media_stream_client.h',
26 'simple_data_source.cc', 27 'simple_data_source.cc',
27 'simple_data_source.h', 28 'simple_data_source.h',
28 'video_renderer_impl.cc', 29 'video_renderer_impl.cc',
29 'video_renderer_impl.h', 30 'video_renderer_impl.h',
30 'web_data_source.cc', 31 'web_data_source.cc',
31 'web_data_source_factory.cc', 32 'web_data_source_factory.cc',
32 'web_data_source_factory.h', 33 'web_data_source_factory.h',
33 'web_data_source.h', 34 'web_data_source.h',
34 'webmediaplayer_delegate.h', 35 'webmediaplayer_delegate.h',
35 'webmediaplayer_impl.cc', 36 'webmediaplayer_impl.cc',
36 'webmediaplayer_impl.h', 37 'webmediaplayer_impl.h',
37 'webmediaplayer_proxy.cc', 38 'webmediaplayer_proxy.cc',
38 'webmediaplayer_proxy.h', 39 'webmediaplayer_proxy.h',
39 'webvideoframe_impl.cc', 40 'webvideoframe_impl.cc',
40 'webvideoframe_impl.h', 41 'webvideoframe_impl.h',
41 ], 42 ],
42 'conditions': [ 43 'conditions': [
43 ['inside_chromium_build==0', { 44 ['inside_chromium_build==0', {
44 'dependencies': [ 45 'dependencies': [
45 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', 46 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers',
46 ], 47 ],
47 }], 48 }],
49 ['OS=="android"', {
50 'sources!': [
51 'audio_decoder.cc',
scherkus (not reviewing) 2011/12/08 06:48:26 does this mean we build audio_decoder_android.cc o
52 ],
53 }],
48 ], 54 ],
49 }, 55 },
50 ], 56 ],
51 } 57 }
OLDNEW
« no previous file with comments | « webkit/media/audio_decoder_android.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698