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 sources = [ | |
19 "active_loader.cc", | |
20 "active_loader.h", | |
21 "buffered_data_source.cc", | |
22 "buffered_data_source.h", | |
23 "buffered_data_source_host_impl.cc", | |
24 "buffered_data_source_host_impl.h", | |
25 "buffered_resource_loader.cc", | |
26 "buffered_resource_loader.h", | |
27 "encrypted_media_player_support.cc", | |
28 "encrypted_media_player_support.h", | |
29 "cache_util.cc", | |
30 "cache_util.h", | |
31 "texttrack_impl.cc", | |
32 "texttrack_impl.h", | |
33 "video_frame_compositor.cc", | |
34 "video_frame_compositor.h", | |
35 "webaudiosourceprovider_impl.cc", | |
36 "webaudiosourceprovider_impl.h", | |
37 "webinbandtexttrack_impl.cc", | |
38 "webinbandtexttrack_impl.h", | |
39 "webmediaplayer_delegate.h", | |
40 "webmediaplayer_impl.cc", | |
41 "webmediaplayer_impl.h", | |
42 "webmediaplayer_params.cc", | |
43 "webmediaplayer_params.h", | |
44 "webmediaplayer_util.cc", | |
45 "webmediaplayer_util.h", | |
46 "webmediasource_impl.cc", | |
47 "webmediasource_impl.h", | |
48 "websourcebuffer_impl.cc", | |
49 "websourcebuffer_impl.h", | |
50 ] | |
51 } | |
52 | |
53 test("media_blink_unittests") { | |
54 deps = [ | |
55 ":blink", | |
56 "//base", | |
57 "//base/test:test_support", | |
58 "//cc", | |
59 "//cc/blink", | |
60 "//media", | |
61 "//media/base:test_support", | |
62 "//testing/gmock", | |
63 "//testing/gtest", | |
64 "//third_party/WebKit/public:blink", | |
65 "//ui/gfx/geometry", | |
66 "//ui/gfx:test_support", | |
67 ] | |
68 | |
69 sources = [ | |
70 "buffered_data_source_host_impl_unittest.cc", | |
71 "cache_util_unittest.cc", | |
72 "video_frame_compositor_unittest.cc", | |
73 "webaudiosourceprovider_impl_unittest.cc", | |
74 "../base/run_all_unittests.cc", | |
jamesr
2014/09/02 19:26:44
in GN, you can put this in a source_set and then l
| |
75 ] | |
76 } | |
OLD | NEW |