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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 "//cc:test_support", | 136 "//cc:test_support", |
137 "//cc/surfaces", | 137 "//cc/surfaces", |
138 "//gpu/command_buffer/client:gl_in_process_context", | 138 "//gpu/command_buffer/client:gl_in_process_context", |
139 "//gpu/command_buffer/client:gles2_c_lib", | 139 "//gpu/command_buffer/client:gles2_c_lib", |
140 "//gpu/command_buffer/client:gles2_implementation", | 140 "//gpu/command_buffer/client:gles2_implementation", |
141 "//gpu/command_buffer/common:gles2_utils", | 141 "//gpu/command_buffer/common:gles2_utils", |
142 "//gpu/skia_bindings", | 142 "//gpu/skia_bindings", |
143 "//skia", | 143 "//skia", |
144 "//testing/gtest", | 144 "//testing/gtest", |
145 "//ui/base", | 145 "//ui/base", |
| 146 "//ui/display", |
146 "//ui/gfx", | 147 "//ui/gfx", |
147 "//ui/gfx/geometry", | 148 "//ui/gfx/geometry", |
148 "//ui/gl:test_support", | 149 "//ui/gl:test_support", |
149 ] | 150 ] |
150 | 151 |
151 if (use_x11) { | 152 if (use_x11) { |
152 configs += [ "//build/config/linux:x11" ] | 153 configs += [ "//build/config/linux:x11" ] |
153 deps += [ "//ui/gfx/x" ] | 154 deps += [ "//ui/gfx/x" ] |
154 } | 155 } |
155 | 156 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 "//ui/base", | 193 "//ui/base", |
193 "//ui/gfx", | 194 "//ui/gfx", |
194 "//ui/gfx/geometry", | 195 "//ui/gfx/geometry", |
195 "//ui/gl", | 196 "//ui/gl", |
196 "//ui/resources", | 197 "//ui/resources", |
197 ] | 198 ] |
198 if (is_linux) { | 199 if (is_linux) { |
199 deps += [ "//third_party/mesa:osmesa" ] | 200 deps += [ "//third_party/mesa:osmesa" ] |
200 } | 201 } |
201 } | 202 } |
OLD | NEW |