| 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 "output/compositor_frame_sink.h", | 223 "output/compositor_frame_sink.h", |
| 224 "output/compositor_frame_sink_client.h", | 224 "output/compositor_frame_sink_client.h", |
| 225 "output/context_cache_controller.cc", | 225 "output/context_cache_controller.cc", |
| 226 "output/context_cache_controller.h", | 226 "output/context_cache_controller.h", |
| 227 "output/context_provider.cc", | 227 "output/context_provider.cc", |
| 228 "output/context_provider.h", | 228 "output/context_provider.h", |
| 229 "output/copy_output_request.cc", | 229 "output/copy_output_request.cc", |
| 230 "output/copy_output_request.h", | 230 "output/copy_output_request.h", |
| 231 "output/copy_output_result.cc", | 231 "output/copy_output_result.cc", |
| 232 "output/copy_output_result.h", | 232 "output/copy_output_result.h", |
| 233 "output/delegated_frame_data.cc", |
| 234 "output/delegated_frame_data.h", |
| 233 "output/direct_renderer.cc", | 235 "output/direct_renderer.cc", |
| 234 "output/direct_renderer.h", | 236 "output/direct_renderer.h", |
| 235 "output/dynamic_geometry_binding.cc", | 237 "output/dynamic_geometry_binding.cc", |
| 236 "output/dynamic_geometry_binding.h", | 238 "output/dynamic_geometry_binding.h", |
| 237 "output/filter_operation.cc", | 239 "output/filter_operation.cc", |
| 238 "output/filter_operation.h", | 240 "output/filter_operation.h", |
| 239 "output/filter_operations.cc", | 241 "output/filter_operations.cc", |
| 240 "output/filter_operations.h", | 242 "output/filter_operations.h", |
| 241 "output/geometry_binding.cc", | 243 "output/geometry_binding.cc", |
| 242 "output/geometry_binding.h", | 244 "output/geometry_binding.h", |
| (...skipping 831 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1074 data = [ | 1076 data = [ |
| 1075 "test/data/", | 1077 "test/data/", |
| 1076 | 1078 |
| 1077 # Needed for isolate script to execute. | 1079 # Needed for isolate script to execute. |
| 1078 "//testing/scripts/common.py", | 1080 "//testing/scripts/common.py", |
| 1079 "//testing/xvfb.py", | 1081 "//testing/xvfb.py", |
| 1080 "//testing/scripts/run_gtest_perf_test.py", | 1082 "//testing/scripts/run_gtest_perf_test.py", |
| 1081 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 1083 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 1082 ] | 1084 ] |
| 1083 } | 1085 } |
| OLD | NEW |