| 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 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 "test/geometry_test_utils.cc", | 621 "test/geometry_test_utils.cc", |
| 622 "test/geometry_test_utils.h", | 622 "test/geometry_test_utils.h", |
| 623 "test/layer_test_common.cc", | 623 "test/layer_test_common.cc", |
| 624 "test/layer_test_common.h", | 624 "test/layer_test_common.h", |
| 625 "test/layer_tree_json_parser.cc", | 625 "test/layer_tree_json_parser.cc", |
| 626 "test/layer_tree_json_parser.h", | 626 "test/layer_tree_json_parser.h", |
| 627 "test/layer_tree_pixel_resource_test.cc", | 627 "test/layer_tree_pixel_resource_test.cc", |
| 628 "test/layer_tree_pixel_resource_test.h", | 628 "test/layer_tree_pixel_resource_test.h", |
| 629 "test/layer_tree_pixel_test.cc", | 629 "test/layer_tree_pixel_test.cc", |
| 630 "test/layer_tree_pixel_test.h", | 630 "test/layer_tree_pixel_test.h", |
| 631 "test/layer_tree_settings_for_testing.cc", | |
| 632 "test/layer_tree_settings_for_testing.h", | |
| 633 "test/layer_tree_test.cc", | 631 "test/layer_tree_test.cc", |
| 634 "test/layer_tree_test.h", | 632 "test/layer_tree_test.h", |
| 635 "test/mock_helper.h", | 633 "test/mock_helper.h", |
| 636 "test/mock_occlusion_tracker.h", | 634 "test/mock_occlusion_tracker.h", |
| 637 "test/ordered_simple_task_runner.cc", | 635 "test/ordered_simple_task_runner.cc", |
| 638 "test/ordered_simple_task_runner.h", | 636 "test/ordered_simple_task_runner.h", |
| 639 "test/ordered_texture_map.cc", | 637 "test/ordered_texture_map.cc", |
| 640 "test/ordered_texture_map.h", | 638 "test/ordered_texture_map.h", |
| 641 "test/paths.cc", | 639 "test/paths.cc", |
| 642 "test/paths.h", | 640 "test/paths.h", |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 998 data = [ | 996 data = [ |
| 999 "test/data/", | 997 "test/data/", |
| 1000 | 998 |
| 1001 # Needed for isolate script to execute. | 999 # Needed for isolate script to execute. |
| 1002 "//testing/scripts/common.py", | 1000 "//testing/scripts/common.py", |
| 1003 "//testing/xvfb.py", | 1001 "//testing/xvfb.py", |
| 1004 "//testing/scripts/run_gtest_perf_test.py", | 1002 "//testing/scripts/run_gtest_perf_test.py", |
| 1005 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 1003 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 1006 ] | 1004 ] |
| 1007 } | 1005 } |
| OLD | NEW |