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("cc") { | 8 component("cc") { |
9 sources = [ | 9 sources = [ |
10 "animation/animation.cc", | 10 "animation/animation.cc", |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 "output/color_lut_cache.h", | 207 "output/color_lut_cache.h", |
208 "output/compositor_frame.cc", | 208 "output/compositor_frame.cc", |
209 "output/compositor_frame.h", | 209 "output/compositor_frame.h", |
210 "output/compositor_frame_metadata.cc", | 210 "output/compositor_frame_metadata.cc", |
211 "output/compositor_frame_metadata.h", | 211 "output/compositor_frame_metadata.h", |
212 "output/compositor_frame_sink.cc", | 212 "output/compositor_frame_sink.cc", |
213 "output/compositor_frame_sink.h", | 213 "output/compositor_frame_sink.h", |
214 "output/compositor_frame_sink_client.h", | 214 "output/compositor_frame_sink_client.h", |
215 "output/context_cache_controller.cc", | 215 "output/context_cache_controller.cc", |
216 "output/context_cache_controller.h", | 216 "output/context_cache_controller.h", |
| 217 "output/context_provider.cc", |
217 "output/context_provider.h", | 218 "output/context_provider.h", |
218 "output/copy_output_request.cc", | 219 "output/copy_output_request.cc", |
219 "output/copy_output_request.h", | 220 "output/copy_output_request.h", |
220 "output/copy_output_result.cc", | 221 "output/copy_output_result.cc", |
221 "output/copy_output_result.h", | 222 "output/copy_output_result.h", |
222 "output/delegated_frame_data.cc", | 223 "output/delegated_frame_data.cc", |
223 "output/delegated_frame_data.h", | 224 "output/delegated_frame_data.h", |
224 "output/direct_renderer.cc", | 225 "output/direct_renderer.cc", |
225 "output/direct_renderer.h", | 226 "output/direct_renderer.h", |
226 "output/dynamic_geometry_binding.cc", | 227 "output/dynamic_geometry_binding.cc", |
(...skipping 828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1055 "//ui/gl:test_support", | 1056 "//ui/gl:test_support", |
1056 ] | 1057 ] |
1057 | 1058 |
1058 # This target should not require the Chrome executable to run. | 1059 # This target should not require the Chrome executable to run. |
1059 assert_no_deps = [ "//chrome" ] | 1060 assert_no_deps = [ "//chrome" ] |
1060 | 1061 |
1061 data = [ | 1062 data = [ |
1062 "test/data/", | 1063 "test/data/", |
1063 ] | 1064 ] |
1064 } | 1065 } |
OLD | NEW |