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

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

Issue 2514033002: Introducing SurfaceReferenceFactory (Closed)
Patch Set: up Created 4 years 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 74
75 defines = [ "COMPOSITOR_IMPLEMENTATION" ] 75 defines = [ "COMPOSITOR_IMPLEMENTATION" ]
76 76
77 deps = [ 77 deps = [
78 "//base", 78 "//base",
79 "//base/third_party/dynamic_annotations", 79 "//base/third_party/dynamic_annotations",
80 "//cc", 80 "//cc",
81 "//cc/animation", 81 "//cc/animation",
82 "//cc/surfaces", 82 "//cc/surfaces",
83 "//cc/surfaces:surface_id", 83 "//cc/surfaces:surface_id",
84 "//cc/surfaces:surfaces",
84 "//gpu/command_buffer/common", 85 "//gpu/command_buffer/common",
85 "//skia", 86 "//skia",
86 "//ui/gfx", 87 "//ui/gfx",
87 "//ui/gfx/geometry", 88 "//ui/gfx/geometry",
88 "//ui/gl", 89 "//ui/gl",
89 ] 90 ]
90 91
91 if (is_win && use_aura) { 92 if (is_win && use_aura) {
92 # TODO(sky): before we make this real need to remove 93 # TODO(sky): before we make this real need to remove
93 # IDR_BITMAP_BRUSH_IMAGE. 94 # IDR_BITMAP_BRUSH_IMAGE.
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 187
187 deps = [ 188 deps = [
188 ":compositor", 189 ":compositor",
189 ":test_support", 190 ":test_support",
190 "//base", 191 "//base",
191 "//base/test:test_support", 192 "//base/test:test_support",
192 "//cc", 193 "//cc",
193 "//cc:test_support", 194 "//cc:test_support",
194 "//cc/surfaces", 195 "//cc/surfaces",
195 "//cc/surfaces:surface_id", 196 "//cc/surfaces:surface_id",
197 "//cc/surfaces:surfaces",
196 "//skia", 198 "//skia",
197 "//testing/gmock", 199 "//testing/gmock",
198 "//testing/gtest", 200 "//testing/gtest",
199 "//ui/base", 201 "//ui/base",
200 "//ui/gfx", 202 "//ui/gfx",
201 "//ui/gfx/geometry", 203 "//ui/gfx/geometry",
202 "//ui/gl", 204 "//ui/gl",
203 "//ui/resources", 205 "//ui/resources",
204 ] 206 ]
205 if (is_linux) { 207 if (is_linux) {
206 deps += [ "//third_party/mesa:osmesa" ] 208 deps += [ "//third_party/mesa:osmesa" ]
207 } 209 }
208 } 210 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698