| 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 ] | 183 ] |
| 184 | 184 |
| 185 data = [ | 185 data = [ |
| 186 "//ui/gfx/test/data/compositor/", | 186 "//ui/gfx/test/data/compositor/", |
| 187 ] | 187 ] |
| 188 | 188 |
| 189 deps = [ | 189 deps = [ |
| 190 ":compositor", | 190 ":compositor", |
| 191 ":test_support", | 191 ":test_support", |
| 192 "//base", | 192 "//base", |
| 193 "//base/allocator", | |
| 194 "//base/test:test_support", | 193 "//base/test:test_support", |
| 195 "//cc", | 194 "//cc", |
| 196 "//cc:test_support", | 195 "//cc:test_support", |
| 197 "//skia", | 196 "//skia", |
| 198 "//testing/gmock", | 197 "//testing/gmock", |
| 199 "//testing/gtest", | 198 "//testing/gtest", |
| 200 "//ui/base", | 199 "//ui/base", |
| 201 "//ui/gfx", | 200 "//ui/gfx", |
| 202 "//ui/gfx/geometry", | 201 "//ui/gfx/geometry", |
| 203 "//ui/gl", | 202 "//ui/gl", |
| 204 "//ui/resources", | 203 "//ui/resources", |
| 205 ] | 204 ] |
| 206 if (is_linux) { | 205 if (is_linux) { |
| 207 deps += [ "//third_party/mesa:osmesa" ] | 206 deps += [ "//third_party/mesa:osmesa" ] |
| 208 } | 207 } |
| 209 } | 208 } |
| OLD | NEW |