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 "canvas_painter.cc", | 10 "canvas_painter.cc", |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 "//cc", | 127 "//cc", |
128 "//cc/surfaces", | 128 "//cc/surfaces", |
129 "//cc:test_support", | 129 "//cc:test_support", |
130 "//gpu/command_buffer/client:gl_in_process_context", | 130 "//gpu/command_buffer/client:gl_in_process_context", |
131 "//gpu/command_buffer/client:gles2_c_lib", | 131 "//gpu/command_buffer/client:gles2_c_lib", |
132 "//gpu/command_buffer/client:gles2_implementation", | 132 "//gpu/command_buffer/client:gles2_implementation", |
133 "//gpu/command_buffer/common:gles2_utils", | 133 "//gpu/command_buffer/common:gles2_utils", |
134 "//gpu/skia_bindings", | 134 "//gpu/skia_bindings", |
135 "//skia", | 135 "//skia", |
136 "//testing/gtest", | 136 "//testing/gtest", |
137 "//third_party/WebKit/public:blink_minimal", | |
138 "//ui/base", | 137 "//ui/base", |
139 "//ui/gfx", | 138 "//ui/gfx", |
140 "//ui/gfx/geometry", | 139 "//ui/gfx/geometry", |
141 "//ui/gl", | 140 "//ui/gl", |
142 ] | 141 ] |
143 | 142 |
144 if (use_x11) { | 143 if (use_x11) { |
145 configs += [ "//build/config/linux:x11" ] | 144 configs += [ "//build/config/linux:x11" ] |
146 deps += [ "//ui/gfx/x" ] | 145 deps += [ "//ui/gfx/x" ] |
147 } | 146 } |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 "//ui/gfx/geometry", | 194 "//ui/gfx/geometry", |
196 "//ui/gl", | 195 "//ui/gl", |
197 "//ui/resources", | 196 "//ui/resources", |
198 ] | 197 ] |
199 | 198 |
200 if (is_linux) { | 199 if (is_linux) { |
201 deps += [ "//third_party/mesa:osmesa" ] | 200 deps += [ "//third_party/mesa:osmesa" ] |
202 } | 201 } |
203 } | 202 } |
204 } | 203 } |
OLD | NEW |