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

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

Issue 2877483003: Implements core logic for Pixel Canvas (Closed)
Patch Set: Updated GetContextScaleType() from public to protected Created 3 years, 6 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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 186
187 test("compositor_unittests") { 187 test("compositor_unittests") {
188 sources = [ 188 sources = [
189 "callback_layer_animation_observer_unittest.cc", 189 "callback_layer_animation_observer_unittest.cc",
190 "compositor_unittest.cc", 190 "compositor_unittest.cc",
191 "layer_animation_element_unittest.cc", 191 "layer_animation_element_unittest.cc",
192 "layer_animation_sequence_unittest.cc", 192 "layer_animation_sequence_unittest.cc",
193 "layer_animator_unittest.cc", 193 "layer_animator_unittest.cc",
194 "layer_owner_unittest.cc", 194 "layer_owner_unittest.cc",
195 "layer_unittest.cc", 195 "layer_unittest.cc",
196 "paint_context_unittest.cc",
196 "run_all_unittests.cc", 197 "run_all_unittests.cc",
197 "transform_animation_curve_adapter_unittest.cc", 198 "transform_animation_curve_adapter_unittest.cc",
198 ] 199 ]
199 200
200 data = [ 201 data = [
201 "//ui/gfx/test/data/compositor/", 202 "//ui/gfx/test/data/compositor/",
202 ] 203 ]
203 204
204 deps = [ 205 deps = [
205 ":compositor", 206 ":compositor",
(...skipping 10 matching lines...) Expand all
216 "//ui/base", 217 "//ui/base",
217 "//ui/gfx", 218 "//ui/gfx",
218 "//ui/gfx/geometry", 219 "//ui/gfx/geometry",
219 "//ui/gl", 220 "//ui/gl",
220 "//ui/resources", 221 "//ui/resources",
221 ] 222 ]
222 if (is_linux) { 223 if (is_linux) {
223 deps += [ "//third_party/mesa:osmesa" ] 224 deps += [ "//third_party/mesa:osmesa" ]
224 } 225 }
225 } 226 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698