| OLD | NEW |
| 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', |
| 18 'active_loader.h', |
| 17 'audio_decoder.cc', | 19 'audio_decoder.cc', |
| 18 'audio_decoder.h', | 20 'audio_decoder.h', |
| 19 'buffered_data_source.cc', | 21 'buffered_data_source.cc', |
| 20 'buffered_data_source.h', | 22 'buffered_data_source.h', |
| 21 'buffered_resource_loader.cc', | 23 'buffered_resource_loader.cc', |
| 22 'buffered_resource_loader.h', | 24 'buffered_resource_loader.h', |
| 23 'media_stream_client.h', | 25 'media_stream_client.h', |
| 24 'simple_data_source.cc', | 26 'simple_data_source.cc', |
| 25 'simple_data_source.h', | 27 'simple_data_source.h', |
| 26 'video_renderer_impl.cc', | 28 'video_renderer_impl.cc', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 40 'conditions': [ | 42 'conditions': [ |
| 41 ['inside_chromium_build==0', { | 43 ['inside_chromium_build==0', { |
| 42 'dependencies': [ | 44 'dependencies': [ |
| 43 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 45 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
| 44 ], | 46 ], |
| 45 }], | 47 }], |
| 46 ], | 48 ], |
| 47 }, | 49 }, |
| 48 ], | 50 ], |
| 49 } | 51 } |
| OLD | NEW |