| 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 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 "trees/clip_node.h", | 396 "trees/clip_node.h", |
| 397 "trees/compositor_mode.h", | 397 "trees/compositor_mode.h", |
| 398 "trees/damage_tracker.cc", | 398 "trees/damage_tracker.cc", |
| 399 "trees/damage_tracker.h", | 399 "trees/damage_tracker.h", |
| 400 "trees/debug_rect_history.cc", | 400 "trees/debug_rect_history.cc", |
| 401 "trees/debug_rect_history.h", | 401 "trees/debug_rect_history.h", |
| 402 "trees/draw_property_utils.cc", | 402 "trees/draw_property_utils.cc", |
| 403 "trees/draw_property_utils.h", | 403 "trees/draw_property_utils.h", |
| 404 "trees/effect_node.cc", | 404 "trees/effect_node.cc", |
| 405 "trees/effect_node.h", | 405 "trees/effect_node.h", |
| 406 "trees/element_id.cc", | |
| 407 "trees/element_id.h", | 406 "trees/element_id.h", |
| 408 "trees/frame_rate_counter.cc", | 407 "trees/frame_rate_counter.cc", |
| 409 "trees/frame_rate_counter.h", | 408 "trees/frame_rate_counter.h", |
| 410 "trees/latency_info_swap_promise_monitor.cc", | 409 "trees/latency_info_swap_promise_monitor.cc", |
| 411 "trees/latency_info_swap_promise_monitor.h", | 410 "trees/latency_info_swap_promise_monitor.h", |
| 412 "trees/layer_tree_host.cc", | 411 "trees/layer_tree_host.cc", |
| 413 "trees/layer_tree_host.h", | 412 "trees/layer_tree_host.h", |
| 414 "trees/layer_tree_host_client.h", | 413 "trees/layer_tree_host_client.h", |
| 415 "trees/layer_tree_host_common.cc", | 414 "trees/layer_tree_host_common.cc", |
| 416 "trees/layer_tree_host_common.h", | 415 "trees/layer_tree_host_common.h", |
| (...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 967 data = [ | 966 data = [ |
| 968 "test/data/", | 967 "test/data/", |
| 969 | 968 |
| 970 # Needed for isolate script to execute. | 969 # Needed for isolate script to execute. |
| 971 "//testing/scripts/common.py", | 970 "//testing/scripts/common.py", |
| 972 "//testing/xvfb.py", | 971 "//testing/xvfb.py", |
| 973 "//testing/scripts/run_gtest_perf_test.py", | 972 "//testing/scripts/run_gtest_perf_test.py", |
| 974 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 973 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 975 ] | 974 ] |
| 976 } | 975 } |
| OLD | NEW |