| 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 "output/compositor_frame_sink.h", | 230 "output/compositor_frame_sink.h", |
| 231 "output/compositor_frame_sink_client.h", | 231 "output/compositor_frame_sink_client.h", |
| 232 "output/context_cache_controller.cc", | 232 "output/context_cache_controller.cc", |
| 233 "output/context_cache_controller.h", | 233 "output/context_cache_controller.h", |
| 234 "output/context_provider.cc", | 234 "output/context_provider.cc", |
| 235 "output/context_provider.h", | 235 "output/context_provider.h", |
| 236 "output/copy_output_request.cc", | 236 "output/copy_output_request.cc", |
| 237 "output/copy_output_request.h", | 237 "output/copy_output_request.h", |
| 238 "output/copy_output_result.cc", | 238 "output/copy_output_result.cc", |
| 239 "output/copy_output_result.h", | 239 "output/copy_output_result.h", |
| 240 "output/delegated_frame_data.cc", | |
| 241 "output/delegated_frame_data.h", | |
| 242 "output/direct_renderer.cc", | 240 "output/direct_renderer.cc", |
| 243 "output/direct_renderer.h", | 241 "output/direct_renderer.h", |
| 244 "output/dynamic_geometry_binding.cc", | 242 "output/dynamic_geometry_binding.cc", |
| 245 "output/dynamic_geometry_binding.h", | 243 "output/dynamic_geometry_binding.h", |
| 246 "output/filter_operation.cc", | 244 "output/filter_operation.cc", |
| 247 "output/filter_operation.h", | 245 "output/filter_operation.h", |
| 248 "output/filter_operations.cc", | 246 "output/filter_operations.cc", |
| 249 "output/filter_operations.h", | 247 "output/filter_operations.h", |
| 250 "output/geometry_binding.cc", | 248 "output/geometry_binding.cc", |
| 251 "output/geometry_binding.h", | 249 "output/geometry_binding.h", |
| (...skipping 827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1079 "//ui/gl:test_support", | 1077 "//ui/gl:test_support", |
| 1080 ] | 1078 ] |
| 1081 | 1079 |
| 1082 # This target should not require the Chrome executable to run. | 1080 # This target should not require the Chrome executable to run. |
| 1083 assert_no_deps = [ "//chrome" ] | 1081 assert_no_deps = [ "//chrome" ] |
| 1084 | 1082 |
| 1085 data = [ | 1083 data = [ |
| 1086 "test/data/", | 1084 "test/data/", |
| 1087 ] | 1085 ] |
| 1088 } | 1086 } |
| OLD | NEW |