| 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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 "trees/damage_tracker.cc", | 443 "trees/damage_tracker.cc", |
| 444 "trees/damage_tracker.h", | 444 "trees/damage_tracker.h", |
| 445 "trees/draw_property_utils.cc", | 445 "trees/draw_property_utils.cc", |
| 446 "trees/draw_property_utils.h", | 446 "trees/draw_property_utils.h", |
| 447 "trees/effect_node.cc", | 447 "trees/effect_node.cc", |
| 448 "trees/effect_node.h", | 448 "trees/effect_node.h", |
| 449 "trees/element_id.cc", | 449 "trees/element_id.cc", |
| 450 "trees/element_id.h", | 450 "trees/element_id.h", |
| 451 "trees/latency_info_swap_promise_monitor.cc", | 451 "trees/latency_info_swap_promise_monitor.cc", |
| 452 "trees/latency_info_swap_promise_monitor.h", | 452 "trees/latency_info_swap_promise_monitor.h", |
| 453 "trees/layer_tree.cc", | |
| 454 "trees/layer_tree.h", | |
| 455 "trees/layer_tree_host.cc", | 453 "trees/layer_tree_host.cc", |
| 456 "trees/layer_tree_host.h", | 454 "trees/layer_tree_host.h", |
| 457 "trees/layer_tree_host_client.h", | 455 "trees/layer_tree_host_client.h", |
| 458 "trees/layer_tree_host_common.cc", | 456 "trees/layer_tree_host_common.cc", |
| 459 "trees/layer_tree_host_common.h", | 457 "trees/layer_tree_host_common.h", |
| 460 "trees/layer_tree_host_impl.cc", | 458 "trees/layer_tree_host_impl.cc", |
| 461 "trees/layer_tree_host_impl.h", | 459 "trees/layer_tree_host_impl.h", |
| 462 "trees/layer_tree_host_single_thread_client.h", | 460 "trees/layer_tree_host_single_thread_client.h", |
| 463 "trees/layer_tree_impl.cc", | 461 "trees/layer_tree_impl.cc", |
| 464 "trees/layer_tree_impl.h", | 462 "trees/layer_tree_impl.h", |
| (...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 988 data = [ | 986 data = [ |
| 989 "test/data/", | 987 "test/data/", |
| 990 | 988 |
| 991 # Needed for isolate script to execute. | 989 # Needed for isolate script to execute. |
| 992 "//testing/scripts/common.py", | 990 "//testing/scripts/common.py", |
| 993 "//testing/xvfb.py", | 991 "//testing/xvfb.py", |
| 994 "//testing/scripts/run_gtest_perf_test.py", | 992 "//testing/scripts/run_gtest_perf_test.py", |
| 995 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 993 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 996 ] | 994 ] |
| 997 } | 995 } |
| OLD | NEW |