OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 component("blink") { | 4 component("blink") { |
5 output_name = "media_blink" | 5 output_name = "media_blink" |
6 | 6 |
7 deps = [ | 7 deps = [ |
8 "//base", | 8 "//base", |
9 "//cc", | 9 "//cc", |
10 "//cc/blink", | 10 "//cc/blink", |
11 "//media", | 11 "//media", |
| 12 "//media:shared_memory_support", |
12 "//net", | 13 "//net", |
13 "//third_party/WebKit/public:blink", | 14 "//third_party/WebKit/public:blink", |
14 "//ui/gfx", | 15 "//ui/gfx", |
15 "//ui/gfx/geometry", | 16 "//ui/gfx/geometry", |
16 ] | 17 ] |
17 | 18 |
18 defines = [ "MEDIA_IMPLEMENTATION" ] | 19 defines = [ "MEDIA_IMPLEMENTATION" ] |
19 | 20 |
20 sources = [ | 21 sources = [ |
21 "active_loader.cc", | 22 "active_loader.cc", |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 } | 54 } |
54 | 55 |
55 test("media_blink_unittests") { | 56 test("media_blink_unittests") { |
56 deps = [ | 57 deps = [ |
57 ":blink", | 58 ":blink", |
58 "//base", | 59 "//base", |
59 "//base/test:test_support", | 60 "//base/test:test_support", |
60 "//cc", | 61 "//cc", |
61 "//cc/blink", | 62 "//cc/blink", |
62 "//media", | 63 "//media", |
| 64 "//media:shared_memory_support", |
63 "//media/base:test_support", | 65 "//media/base:test_support", |
64 "//net", | 66 "//net", |
65 "//testing/gmock", | 67 "//testing/gmock", |
66 "//testing/gtest", | 68 "//testing/gtest", |
67 "//third_party/WebKit/public:blink", | 69 "//third_party/WebKit/public:blink", |
68 "//ui/gfx/geometry", | 70 "//ui/gfx/geometry", |
69 "//ui/gfx:test_support", | 71 "//ui/gfx:test_support", |
70 "//url", | 72 "//url", |
71 ] | 73 ] |
72 | 74 |
73 sources = [ | 75 sources = [ |
74 "buffered_data_source_host_impl_unittest.cc", | 76 "buffered_data_source_host_impl_unittest.cc", |
75 "buffered_data_source_unittest.cc", | 77 "buffered_data_source_unittest.cc", |
76 "buffered_resource_loader_unittest.cc", | 78 "buffered_resource_loader_unittest.cc", |
77 "cache_util_unittest.cc", | 79 "cache_util_unittest.cc", |
78 "mock_webframeclient.h", | 80 "mock_webframeclient.h", |
79 "mock_weburlloader.cc", | 81 "mock_weburlloader.cc", |
80 "mock_weburlloader.h", | 82 "mock_weburlloader.h", |
81 "run_all_unittests.cc", | 83 "run_all_unittests.cc", |
82 "test_response_generator.cc", | 84 "test_response_generator.cc", |
83 "test_response_generator.h", | 85 "test_response_generator.h", |
84 "video_frame_compositor_unittest.cc", | 86 "video_frame_compositor_unittest.cc", |
85 "webaudiosourceprovider_impl_unittest.cc", | 87 "webaudiosourceprovider_impl_unittest.cc", |
86 ] | 88 ] |
87 } | 89 } |
OLD | NEW |