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 "closure_animation_observer.cc", | 10 "closure_animation_observer.cc", |
(...skipping 145 matching lines...) Loading... |
156 | 156 |
157 deps = [ | 157 deps = [ |
158 ":compositor", | 158 ":compositor", |
159 ":test_support", | 159 ":test_support", |
160 "//base", | 160 "//base", |
161 "//base/allocator", | 161 "//base/allocator", |
162 "//base/test:test_support", | 162 "//base/test:test_support", |
163 "//cc", | 163 "//cc", |
164 "//cc:test_support", | 164 "//cc:test_support", |
165 "//skia", | 165 "//skia", |
| 166 "//testing/gmock", |
166 "//testing/gtest", | 167 "//testing/gtest", |
167 "//ui/base", | 168 "//ui/base", |
168 "//ui/gfx", | 169 "//ui/gfx", |
169 "//ui/gfx/geometry", | 170 "//ui/gfx/geometry", |
170 "//ui/gl", | 171 "//ui/gl", |
171 "//ui/resources", | 172 "//ui/resources", |
172 ] | 173 ] |
173 | 174 |
174 if (is_linux) { | 175 if (is_linux) { |
175 deps += [ "//third_party/mesa:osmesa" ] | 176 deps += [ "//third_party/mesa:osmesa" ] |
176 } | 177 } |
177 } | 178 } |
178 } | 179 } |
OLD | NEW |