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("//media/media_options.gni") | 5 import("//media/media_options.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 component("blink") { | 8 component("blink") { |
9 output_name = "media_blink" | 9 output_name = "media_blink" |
10 | 10 |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 "//components/scheduler:scheduler", | 97 "//components/scheduler:scheduler", |
98 "//components/scheduler:test_support", | 98 "//components/scheduler:test_support", |
99 "//gin", | 99 "//gin", |
100 "//media", | 100 "//media", |
101 "//media:shared_memory_support", | 101 "//media:shared_memory_support", |
102 "//media/base:test_support", | 102 "//media/base:test_support", |
103 "//net", | 103 "//net", |
104 "//testing/gmock", | 104 "//testing/gmock", |
105 "//testing/gtest", | 105 "//testing/gtest", |
106 "//third_party/WebKit/public:blink", | 106 "//third_party/WebKit/public:blink", |
| 107 "//ui/gfx:test_support", |
107 "//ui/gfx/geometry", | 108 "//ui/gfx/geometry", |
108 "//ui/gfx:test_support", | |
109 "//url", | 109 "//url", |
110 ] | 110 ] |
111 | 111 |
112 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 112 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
113 | 113 |
114 sources = [ | 114 sources = [ |
115 "buffered_data_source_host_impl_unittest.cc", | 115 "buffered_data_source_host_impl_unittest.cc", |
116 "buffered_data_source_unittest.cc", | 116 "buffered_data_source_unittest.cc", |
117 "buffered_resource_loader_unittest.cc", | 117 "buffered_resource_loader_unittest.cc", |
118 "cache_util_unittest.cc", | 118 "cache_util_unittest.cc", |
(...skipping 19 matching lines...) Expand all Loading... |
138 } | 138 } |
139 | 139 |
140 # TODO(GYP): Delete this after we've converted everything to GN. | 140 # TODO(GYP): Delete this after we've converted everything to GN. |
141 # The _run targets exist only for compatibility w/ GYP. | 141 # The _run targets exist only for compatibility w/ GYP. |
142 group("media_blink_unittests_run") { | 142 group("media_blink_unittests_run") { |
143 testonly = true | 143 testonly = true |
144 deps = [ | 144 deps = [ |
145 ":media_blink_unittests", | 145 ":media_blink_unittests", |
146 ] | 146 ] |
147 } | 147 } |
OLD | NEW |