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 component("blink") { |
| 5 output_name = "media_blink" |
| 6 |
| 7 deps = [ |
| 8 "//base", |
| 9 "//cc", |
| 10 "//cc/blink", |
| 11 "//media", |
| 12 "//net", |
| 13 "//third_party/WebKit/public:blink", |
| 14 "//ui/gfx", |
| 15 "//ui/gfx/geometry", |
| 16 ] |
| 17 |
| 18 defines = [ "MEDIA_IMPLEMENTATION" ] |
| 19 |
| 20 sources = [ |
| 21 "active_loader.cc", |
| 22 "active_loader.h", |
| 23 "buffered_data_source.cc", |
| 24 "buffered_data_source.h", |
| 25 "buffered_data_source_host_impl.cc", |
| 26 "buffered_data_source_host_impl.h", |
| 27 "buffered_resource_loader.cc", |
| 28 "buffered_resource_loader.h", |
| 29 "encrypted_media_player_support.cc", |
| 30 "encrypted_media_player_support.h", |
| 31 "cache_util.cc", |
| 32 "cache_util.h", |
| 33 "texttrack_impl.cc", |
| 34 "texttrack_impl.h", |
| 35 "video_frame_compositor.cc", |
| 36 "video_frame_compositor.h", |
| 37 "webaudiosourceprovider_impl.cc", |
| 38 "webaudiosourceprovider_impl.h", |
| 39 "webinbandtexttrack_impl.cc", |
| 40 "webinbandtexttrack_impl.h", |
| 41 "webmediaplayer_delegate.h", |
| 42 "webmediaplayer_impl.cc", |
| 43 "webmediaplayer_impl.h", |
| 44 "webmediaplayer_params.cc", |
| 45 "webmediaplayer_params.h", |
| 46 "webmediaplayer_util.cc", |
| 47 "webmediaplayer_util.h", |
| 48 "webmediasource_impl.cc", |
| 49 "webmediasource_impl.h", |
| 50 "websourcebuffer_impl.cc", |
| 51 "websourcebuffer_impl.h", |
| 52 ] |
| 53 } |
| 54 |
| 55 test("media_blink_unittests") { |
| 56 deps = [ |
| 57 ":blink", |
| 58 "//base", |
| 59 "//base/test:test_support", |
| 60 "//cc", |
| 61 "//cc/blink", |
| 62 "//media", |
| 63 "//media/base:test_support", |
| 64 "//net", |
| 65 "//testing/gmock", |
| 66 "//testing/gtest", |
| 67 "//third_party/WebKit/public:blink", |
| 68 "//ui/gfx/geometry", |
| 69 "//ui/gfx:test_support", |
| 70 "//url", |
| 71 ] |
| 72 |
| 73 sources = [ |
| 74 "buffered_data_source_host_impl_unittest.cc", |
| 75 "buffered_data_source_unittest.cc", |
| 76 "buffered_resource_loader_unittest.cc", |
| 77 "cache_util_unittest.cc", |
| 78 "mock_webframeclient.h", |
| 79 "mock_weburlloader.cc", |
| 80 "mock_weburlloader.h", |
| 81 "run_all_unittests.cc", |
| 82 "test_response_generator.cc", |
| 83 "test_response_generator.h", |
| 84 "video_frame_compositor_unittest.cc", |
| 85 "webaudiosourceprovider_impl_unittest.cc", |
| 86 ] |
| 87 } |
OLD | NEW |