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

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

Issue 10073016: Upstream WebMediaPlayerAndroid as WebKit::WebMediaPlayer implementation on android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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
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',
scherkus (not reviewing) 2012/04/17 03:57:31 not seeing this file
qinmin 2012/04/18 20:06:30 This should be a diff error, the file and this lin
18 'android/webmediaplayer_android.cc',
19 'android/webmediaplayer_android.h',
20 'android/webmediaplayer_proxy_android.cc',
21 'android/webmediaplayer_proxy_android.h',
17 'active_loader.cc', 22 'active_loader.cc',
18 'active_loader.h', 23 'active_loader.h',
19 'audio_decoder.cc', 24 'audio_decoder.cc',
20 'audio_decoder.h', 25 'audio_decoder.h',
21 'audio_decoder_android.cc', 26 'audio_decoder_android.cc',
22 'buffered_data_source.cc', 27 'buffered_data_source.cc',
23 'buffered_data_source.h', 28 'buffered_data_source.h',
24 'buffered_resource_loader.cc', 29 'buffered_resource_loader.cc',
25 'buffered_resource_loader.h', 30 'buffered_resource_loader.h',
26 'filter_helpers.cc', 31 'filter_helpers.cc',
(...skipping 20 matching lines...) Expand all
47 'sources!': [ 52 'sources!': [
48 'audio_decoder.cc', 53 'audio_decoder.cc',
49 'webmediaplayer_impl.cc', 54 'webmediaplayer_impl.cc',
50 'webmediaplayer_impl.h', 55 'webmediaplayer_impl.h',
51 ], 56 ],
52 }], 57 }],
53 ], 58 ],
54 }, 59 },
55 ], 60 ],
56 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698