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 | 4 |
5 import("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 component("blink") { | 7 component("blink") { |
8 output_name = "media_blink" | 8 output_name = "media_blink" |
9 | 9 |
10 deps = [ | 10 deps = [ |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 "//media/base:test_support", | 97 "//media/base:test_support", |
98 "//net", | 98 "//net", |
99 "//testing/gmock", | 99 "//testing/gmock", |
100 "//testing/gtest", | 100 "//testing/gtest", |
101 "//third_party/WebKit/public:blink", | 101 "//third_party/WebKit/public:blink", |
102 "//ui/gfx/geometry", | 102 "//ui/gfx/geometry", |
103 "//ui/gfx:test_support", | 103 "//ui/gfx:test_support", |
104 "//url", | 104 "//url", |
105 ] | 105 ] |
106 | 106 |
| 107 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 108 |
107 sources = [ | 109 sources = [ |
108 "buffered_data_source_host_impl_unittest.cc", | 110 "buffered_data_source_host_impl_unittest.cc", |
109 "buffered_data_source_unittest.cc", | 111 "buffered_data_source_unittest.cc", |
110 "buffered_resource_loader_unittest.cc", | 112 "buffered_resource_loader_unittest.cc", |
111 "cache_util_unittest.cc", | 113 "cache_util_unittest.cc", |
112 "mock_webframeclient.h", | 114 "mock_webframeclient.h", |
113 "mock_weburlloader.cc", | 115 "mock_weburlloader.cc", |
114 "mock_weburlloader.h", | 116 "mock_weburlloader.h", |
115 "run_all_unittests.cc", | 117 "run_all_unittests.cc", |
116 "test_response_generator.cc", | 118 "test_response_generator.cc", |
117 "test_response_generator.h", | 119 "test_response_generator.h", |
118 "video_frame_compositor_unittest.cc", | 120 "video_frame_compositor_unittest.cc", |
119 "webaudiosourceprovider_impl_unittest.cc", | 121 "webaudiosourceprovider_impl_unittest.cc", |
120 ] | 122 ] |
121 } | 123 } |
122 } | 124 } |
OLD | NEW |