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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 component("compositor") { | 8 component("compositor") { |
9 sources = [ | 9 sources = [ |
10 "callback_layer_animation_observer.cc", | 10 "callback_layer_animation_observer.cc", |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 | 184 |
185 test("compositor_unittests") { | 185 test("compositor_unittests") { |
186 sources = [ | 186 sources = [ |
187 "callback_layer_animation_observer_unittest.cc", | 187 "callback_layer_animation_observer_unittest.cc", |
188 "compositor_unittest.cc", | 188 "compositor_unittest.cc", |
189 "layer_animation_element_unittest.cc", | 189 "layer_animation_element_unittest.cc", |
190 "layer_animation_sequence_unittest.cc", | 190 "layer_animation_sequence_unittest.cc", |
191 "layer_animator_unittest.cc", | 191 "layer_animator_unittest.cc", |
192 "layer_owner_unittest.cc", | 192 "layer_owner_unittest.cc", |
193 "layer_unittest.cc", | 193 "layer_unittest.cc", |
| 194 "paint_context_unittest.cc", |
194 "run_all_unittests.cc", | 195 "run_all_unittests.cc", |
195 "transform_animation_curve_adapter_unittest.cc", | 196 "transform_animation_curve_adapter_unittest.cc", |
196 ] | 197 ] |
197 | 198 |
198 data = [ | 199 data = [ |
199 "//ui/gfx/test/data/compositor/", | 200 "//ui/gfx/test/data/compositor/", |
200 ] | 201 ] |
201 | 202 |
202 deps = [ | 203 deps = [ |
203 ":compositor", | 204 ":compositor", |
(...skipping 10 matching lines...) Expand all Loading... |
214 "//ui/base", | 215 "//ui/base", |
215 "//ui/gfx", | 216 "//ui/gfx", |
216 "//ui/gfx/geometry", | 217 "//ui/gfx/geometry", |
217 "//ui/gl", | 218 "//ui/gl", |
218 "//ui/resources", | 219 "//ui/resources", |
219 ] | 220 ] |
220 if (is_linux) { | 221 if (is_linux) { |
221 deps += [ "//third_party/mesa:osmesa" ] | 222 deps += [ "//third_party/mesa:osmesa" ] |
222 } | 223 } |
223 } | 224 } |
OLD | NEW |