OLD | NEW |
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/stream_texture_factory_android.h', |
18 'android/webmediaplayer_android.cc', | 19 'android/webmediaplayer_android.cc', |
19 'android/webmediaplayer_android.h', | 20 'android/webmediaplayer_android.h', |
| 21 'android/webmediaplayer_manager_android.cc', |
| 22 'android/webmediaplayer_manager_android.h', |
20 'android/webmediaplayer_proxy_android.cc', | 23 'android/webmediaplayer_proxy_android.cc', |
21 'android/webmediaplayer_proxy_android.h', | 24 'android/webmediaplayer_proxy_android.h', |
22 'active_loader.cc', | 25 'active_loader.cc', |
23 'active_loader.h', | 26 'active_loader.h', |
24 'audio_decoder.cc', | 27 'audio_decoder.cc', |
25 'audio_decoder.h', | 28 'audio_decoder.h', |
26 'buffered_data_source.cc', | 29 'buffered_data_source.cc', |
27 'buffered_data_source.h', | 30 'buffered_data_source.h', |
28 'buffered_resource_loader.cc', | 31 'buffered_resource_loader.cc', |
29 'buffered_resource_loader.h', | 32 'buffered_resource_loader.h', |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 ], | 65 ], |
63 }, { # OS != "android"' | 66 }, { # OS != "android"' |
64 'sources/': [ | 67 'sources/': [ |
65 ['exclude', '^android/'], | 68 ['exclude', '^android/'], |
66 ], | 69 ], |
67 }], | 70 }], |
68 ], | 71 ], |
69 }, | 72 }, |
70 ], | 73 ], |
71 } | 74 } |
OLD | NEW |