Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Side by Side Diff: ui/compositor/BUILD.gn

Issue 2877483003: Implements core logic for Pixel Canvas (Closed)
Patch Set: Adds RasterSource Unittest Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698