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", |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 if (is_android) { | 67 if (is_android) { |
68 sources -= [ | 68 sources -= [ |
69 "encrypted_media_player_support.cc", | 69 "encrypted_media_player_support.cc", |
70 "encrypted_media_player_support.h", | 70 "encrypted_media_player_support.h", |
71 "webmediaplayer_impl.cc", | 71 "webmediaplayer_impl.cc", |
72 "webmediaplayer_impl.h", | 72 "webmediaplayer_impl.h", |
73 ] | 73 ] |
74 } | 74 } |
75 } | 75 } |
76 | 76 |
77 test("media_blink_unittests") { | 77 if (!is_mac) { |
78 deps = [ | 78 # TODO(GYP): Make linking this work on the mac. |
79 ":blink", | 79 test("media_blink_unittests") { |
80 "//base", | 80 deps = [ |
81 "//base/test:test_support", | 81 ":blink", |
82 "//cc", | 82 "//base", |
83 "//cc/blink", | 83 "//base/test:test_support", |
84 "//media", | 84 "//cc", |
85 "//media:shared_memory_support", | 85 "//cc/blink", |
86 "//media/base:test_support", | 86 "//media", |
87 "//net", | 87 "//media:shared_memory_support", |
88 "//testing/gmock", | 88 "//media/base:test_support", |
89 "//testing/gtest", | 89 "//net", |
90 "//third_party/WebKit/public:blink", | 90 "//testing/gmock", |
91 "//ui/gfx/geometry", | 91 "//testing/gtest", |
92 "//ui/gfx:test_support", | 92 "//third_party/WebKit/public:blink", |
93 "//url", | 93 "//ui/gfx/geometry", |
94 ] | 94 "//ui/gfx:test_support", |
| 95 "//url", |
| 96 ] |
95 | 97 |
96 sources = [ | 98 sources = [ |
97 "buffered_data_source_host_impl_unittest.cc", | 99 "buffered_data_source_host_impl_unittest.cc", |
98 "buffered_data_source_unittest.cc", | 100 "buffered_data_source_unittest.cc", |
99 "buffered_resource_loader_unittest.cc", | 101 "buffered_resource_loader_unittest.cc", |
100 "cache_util_unittest.cc", | 102 "cache_util_unittest.cc", |
101 "mock_webframeclient.h", | 103 "mock_webframeclient.h", |
102 "mock_weburlloader.cc", | 104 "mock_weburlloader.cc", |
103 "mock_weburlloader.h", | 105 "mock_weburlloader.h", |
104 "run_all_unittests.cc", | 106 "run_all_unittests.cc", |
105 "test_response_generator.cc", | 107 "test_response_generator.cc", |
106 "test_response_generator.h", | 108 "test_response_generator.h", |
107 "video_frame_compositor_unittest.cc", | 109 "video_frame_compositor_unittest.cc", |
108 "webaudiosourceprovider_impl_unittest.cc", | 110 "webaudiosourceprovider_impl_unittest.cc", |
109 ] | 111 ] |
| 112 } |
110 } | 113 } |
OLD | NEW |