| 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("//cc/cc.gni") | 6 import("//cc/cc.gni") |
| 7 | 7 |
| 8 cc_component("cc") { | 8 cc_component("cc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "debug/benchmark_instrumentation.cc", | 10 "debug/benchmark_instrumentation.cc", |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 "output/compositor_frame_sink.h", | 175 "output/compositor_frame_sink.h", |
| 176 "output/compositor_frame_sink_client.h", | 176 "output/compositor_frame_sink_client.h", |
| 177 "output/context_cache_controller.cc", | 177 "output/context_cache_controller.cc", |
| 178 "output/context_cache_controller.h", | 178 "output/context_cache_controller.h", |
| 179 "output/context_provider.cc", | 179 "output/context_provider.cc", |
| 180 "output/context_provider.h", | 180 "output/context_provider.h", |
| 181 "output/copy_output_request.cc", | 181 "output/copy_output_request.cc", |
| 182 "output/copy_output_request.h", | 182 "output/copy_output_request.h", |
| 183 "output/copy_output_result.cc", | 183 "output/copy_output_result.cc", |
| 184 "output/copy_output_result.h", | 184 "output/copy_output_result.h", |
| 185 "output/dc_layer_overlay.cc", |
| 186 "output/dc_layer_overlay.h", |
| 185 "output/direct_renderer.cc", | 187 "output/direct_renderer.cc", |
| 186 "output/direct_renderer.h", | 188 "output/direct_renderer.h", |
| 187 "output/dynamic_geometry_binding.cc", | 189 "output/dynamic_geometry_binding.cc", |
| 188 "output/dynamic_geometry_binding.h", | 190 "output/dynamic_geometry_binding.h", |
| 189 "output/filter_operation.cc", | 191 "output/filter_operation.cc", |
| 190 "output/filter_operation.h", | 192 "output/filter_operation.h", |
| 191 "output/filter_operations.cc", | 193 "output/filter_operations.cc", |
| 192 "output/filter_operations.h", | 194 "output/filter_operations.h", |
| 193 "output/geometry_binding.cc", | 195 "output/geometry_binding.cc", |
| 194 "output/geometry_binding.h", | 196 "output/geometry_binding.h", |
| (...skipping 805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1000 data = [ | 1002 data = [ |
| 1001 "test/data/", | 1003 "test/data/", |
| 1002 | 1004 |
| 1003 # Needed for isolate script to execute. | 1005 # Needed for isolate script to execute. |
| 1004 "//testing/scripts/common.py", | 1006 "//testing/scripts/common.py", |
| 1005 "//testing/xvfb.py", | 1007 "//testing/xvfb.py", |
| 1006 "//testing/scripts/run_gtest_perf_test.py", | 1008 "//testing/scripts/run_gtest_perf_test.py", |
| 1007 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 1009 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 1008 ] | 1010 ] |
| 1009 } | 1011 } |
| OLD | NEW |