| 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("//cc/cc.gni") | 5 import("//cc/cc.gni") |
| 6 import("//gpu/vulkan/features.gni") | 6 import("//gpu/vulkan/features.gni") |
| 7 | 7 |
| 8 cc_component("cc") { | 8 cc_component("cc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "benchmarks/benchmark_instrumentation.cc", | 10 "benchmarks/benchmark_instrumentation.cc", |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 "output/overlay_strategy_single_on_top.cc", | 193 "output/overlay_strategy_single_on_top.cc", |
| 194 "output/overlay_strategy_single_on_top.h", | 194 "output/overlay_strategy_single_on_top.h", |
| 195 "output/overlay_strategy_underlay.cc", | 195 "output/overlay_strategy_underlay.cc", |
| 196 "output/overlay_strategy_underlay.h", | 196 "output/overlay_strategy_underlay.h", |
| 197 "output/overlay_strategy_underlay_cast.cc", | 197 "output/overlay_strategy_underlay_cast.cc", |
| 198 "output/overlay_strategy_underlay_cast.h", | 198 "output/overlay_strategy_underlay_cast.h", |
| 199 "output/program_binding.cc", | 199 "output/program_binding.cc", |
| 200 "output/program_binding.h", | 200 "output/program_binding.h", |
| 201 "output/renderer_settings.cc", | 201 "output/renderer_settings.cc", |
| 202 "output/renderer_settings.h", | 202 "output/renderer_settings.h", |
| 203 "output/report_time_swap_promise.cc", |
| 204 "output/report_time_swap_promise.h", |
| 203 "output/shader.cc", | 205 "output/shader.cc", |
| 204 "output/shader.h", | 206 "output/shader.h", |
| 205 "output/software_output_device.cc", | 207 "output/software_output_device.cc", |
| 206 "output/software_output_device.h", | 208 "output/software_output_device.h", |
| 207 "output/software_renderer.cc", | 209 "output/software_renderer.cc", |
| 208 "output/software_renderer.h", | 210 "output/software_renderer.h", |
| 209 "output/static_geometry_binding.cc", | 211 "output/static_geometry_binding.cc", |
| 210 "output/static_geometry_binding.h", | 212 "output/static_geometry_binding.h", |
| 211 "output/swap_promise.h", | 213 "output/swap_promise.h", |
| 212 "output/texture_mailbox_deleter.cc", | 214 "output/texture_mailbox_deleter.cc", |
| (...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 963 data = [ | 965 data = [ |
| 964 "test/data/", | 966 "test/data/", |
| 965 | 967 |
| 966 # Needed for isolate script to execute. | 968 # Needed for isolate script to execute. |
| 967 "//testing/scripts/common.py", | 969 "//testing/scripts/common.py", |
| 968 "//testing/xvfb.py", | 970 "//testing/xvfb.py", |
| 969 "//testing/scripts/run_gtest_perf_test.py", | 971 "//testing/scripts/run_gtest_perf_test.py", |
| 970 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 972 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 971 ] | 973 ] |
| 972 } | 974 } |
| OLD | NEW |