| 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 | 189 |
| 190 test("compositor_unittests") { | 190 test("compositor_unittests") { |
| 191 sources = [ | 191 sources = [ |
| 192 "callback_layer_animation_observer_unittest.cc", | 192 "callback_layer_animation_observer_unittest.cc", |
| 193 "compositor_unittest.cc", | 193 "compositor_unittest.cc", |
| 194 "layer_animation_element_unittest.cc", | 194 "layer_animation_element_unittest.cc", |
| 195 "layer_animation_sequence_unittest.cc", | 195 "layer_animation_sequence_unittest.cc", |
| 196 "layer_animator_unittest.cc", | 196 "layer_animator_unittest.cc", |
| 197 "layer_owner_unittest.cc", | 197 "layer_owner_unittest.cc", |
| 198 "layer_unittest.cc", | 198 "layer_unittest.cc", |
| 199 "paint_context_unittest.cc", |
| 199 "run_all_unittests.cc", | 200 "run_all_unittests.cc", |
| 200 "transform_animation_curve_adapter_unittest.cc", | 201 "transform_animation_curve_adapter_unittest.cc", |
| 201 ] | 202 ] |
| 202 | 203 |
| 203 data = [ | 204 data = [ |
| 204 "//ui/gfx/test/data/compositor/", | 205 "//ui/gfx/test/data/compositor/", |
| 205 ] | 206 ] |
| 206 | 207 |
| 207 deps = [ | 208 deps = [ |
| 208 ":compositor", | 209 ":compositor", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 220 "//ui/base", | 221 "//ui/base", |
| 221 "//ui/gfx", | 222 "//ui/gfx", |
| 222 "//ui/gfx/geometry", | 223 "//ui/gfx/geometry", |
| 223 "//ui/gl", | 224 "//ui/gl", |
| 224 "//ui/resources", | 225 "//ui/resources", |
| 225 ] | 226 ] |
| 226 if (is_linux) { | 227 if (is_linux) { |
| 227 deps += [ "//third_party/mesa:osmesa" ] | 228 deps += [ "//third_party/mesa:osmesa" ] |
| 228 } | 229 } |
| 229 } | 230 } |
| OLD | NEW |