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