OLD | NEW |
(Empty) | |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'targets': [ |
| 7 { |
| 8 # GN version: //media/blink |
| 9 'target_name': 'media_blink', |
| 10 'type': '<(component)', |
| 11 'dependencies': [ |
| 12 '../../base/base.gyp:base', |
| 13 '../../cc/cc.gyp:cc', |
| 14 '../../cc/blink/cc_blink.gyp:cc_blink', |
| 15 '../../ui/gfx/gfx.gyp:gfx_geometry', |
| 16 '../../net/net.gyp:net', |
| 17 '../../third_party/WebKit/public/blink.gyp:blink', |
| 18 '../media.gyp:media', |
| 19 '../media.gyp:shared_memory_support', |
| 20 '../../url/url.gyp:url_lib', |
| 21 ], |
| 22 'defines': [ |
| 23 'MEDIA_IMPLEMENTATION', |
| 24 ], |
| 25 # This sources list is duplicated in //media/blink/BUILD.gn |
| 26 'sources': [ |
| 27 'active_loader.cc', |
| 28 'active_loader.h', |
| 29 'buffered_data_source.cc', |
| 30 'buffered_data_source.h', |
| 31 'buffered_data_source_host_impl.cc', |
| 32 'buffered_data_source_host_impl.h', |
| 33 'buffered_resource_loader.cc', |
| 34 'buffered_resource_loader.h', |
| 35 'encrypted_media_player_support.cc', |
| 36 'encrypted_media_player_support.h', |
| 37 'cache_util.cc', |
| 38 'cache_util.h', |
| 39 'texttrack_impl.cc', |
| 40 'texttrack_impl.h', |
| 41 'video_frame_compositor.cc', |
| 42 'video_frame_compositor.h', |
| 43 'webaudiosourceprovider_impl.cc', |
| 44 'webaudiosourceprovider_impl.h', |
| 45 'webinbandtexttrack_impl.cc', |
| 46 'webinbandtexttrack_impl.h', |
| 47 'webmediaplayer_delegate.h', |
| 48 'webmediaplayer_impl.cc', |
| 49 'webmediaplayer_impl.h', |
| 50 'webmediaplayer_params.cc', |
| 51 'webmediaplayer_params.h', |
| 52 'webmediaplayer_util.cc', |
| 53 'webmediaplayer_util.h', |
| 54 'webmediasource_impl.cc', |
| 55 'webmediasource_impl.h', |
| 56 'websourcebuffer_impl.cc', |
| 57 'websourcebuffer_impl.h', |
| 58 ], |
| 59 'conditions': [ |
| 60 ['OS=="android"', { |
| 61 'sources!': [ |
| 62 'webmediaplayer_impl.cc', |
| 63 ], |
| 64 }, |
| 65 ], |
| 66 ], |
| 67 }, |
| 68 { |
| 69 'target_name': 'media_blink_unittests', |
| 70 'type': '<(gtest_target_type)', |
| 71 'dependencies': [ |
| 72 'media_blink', |
| 73 '../media.gyp:media', |
| 74 '../media.gyp:media_test_support', |
| 75 '../../base/base.gyp:base', |
| 76 '../../base/base.gyp:test_support_base', |
| 77 '../../cc/cc.gyp:cc', |
| 78 '../../cc/blink/cc_blink.gyp:cc_blink', |
| 79 '../../testing/gmock.gyp:gmock', |
| 80 '../../testing/gtest.gyp:gtest', |
| 81 '../../third_party/WebKit/public/blink.gyp:blink', |
| 82 '../../ui/gfx/gfx.gyp:gfx', |
| 83 '../../ui/gfx/gfx.gyp:gfx_geometry', |
| 84 '../../ui/gfx/gfx.gyp:gfx_test_support', |
| 85 ], |
| 86 'sources': [ |
| 87 'buffered_data_source_host_impl_unittest.cc', |
| 88 'cache_util_unittest.cc', |
| 89 'video_frame_compositor_unittest.cc', |
| 90 'webaudiosourceprovider_impl_unittest.cc', |
| 91 '../base/run_all_unittests.cc', |
| 92 ], |
| 93 }, |
| 94 ] |
| 95 } |
OLD | NEW |