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 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
585 "test/layer_test_common.cc", | 585 "test/layer_test_common.cc", |
586 "test/layer_test_common.h", | 586 "test/layer_test_common.h", |
587 "test/layer_tree_json_parser.cc", | 587 "test/layer_tree_json_parser.cc", |
588 "test/layer_tree_json_parser.h", | 588 "test/layer_tree_json_parser.h", |
589 "test/layer_tree_pixel_resource_test.cc", | 589 "test/layer_tree_pixel_resource_test.cc", |
590 "test/layer_tree_pixel_resource_test.h", | 590 "test/layer_tree_pixel_resource_test.h", |
591 "test/layer_tree_pixel_test.cc", | 591 "test/layer_tree_pixel_test.cc", |
592 "test/layer_tree_pixel_test.h", | 592 "test/layer_tree_pixel_test.h", |
593 "test/layer_tree_test.cc", | 593 "test/layer_tree_test.cc", |
594 "test/layer_tree_test.h", | 594 "test/layer_tree_test.h", |
| 595 "test/mock_compositor_frame_sink_support_client.cc", |
| 596 "test/mock_compositor_frame_sink_support_client.h", |
595 "test/mock_helper.h", | 597 "test/mock_helper.h", |
596 "test/mock_occlusion_tracker.h", | 598 "test/mock_occlusion_tracker.h", |
597 "test/ordered_simple_task_runner.cc", | 599 "test/ordered_simple_task_runner.cc", |
598 "test/ordered_simple_task_runner.h", | 600 "test/ordered_simple_task_runner.h", |
599 "test/ordered_texture_map.cc", | 601 "test/ordered_texture_map.cc", |
600 "test/ordered_texture_map.h", | 602 "test/ordered_texture_map.h", |
601 "test/paths.cc", | 603 "test/paths.cc", |
602 "test/paths.h", | 604 "test/paths.h", |
603 "test/pixel_comparator.cc", | 605 "test/pixel_comparator.cc", |
604 "test/pixel_comparator.h", | 606 "test/pixel_comparator.h", |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
847 "animation/scroll_offset_animation_curve_unittest.cc", | 849 "animation/scroll_offset_animation_curve_unittest.cc", |
848 "animation/transform_operations_unittest.cc", | 850 "animation/transform_operations_unittest.cc", |
849 | 851 |
850 # Surfaces test files. | 852 # Surfaces test files. |
851 "surfaces/compositor_frame_sink_support_unittest.cc", | 853 "surfaces/compositor_frame_sink_support_unittest.cc", |
852 "surfaces/direct_compositor_frame_sink_unittest.cc", | 854 "surfaces/direct_compositor_frame_sink_unittest.cc", |
853 "surfaces/display_scheduler_unittest.cc", | 855 "surfaces/display_scheduler_unittest.cc", |
854 "surfaces/display_unittest.cc", | 856 "surfaces/display_unittest.cc", |
855 "surfaces/referenced_surface_tracker_unittest.cc", | 857 "surfaces/referenced_surface_tracker_unittest.cc", |
856 "surfaces/surface_aggregator_unittest.cc", | 858 "surfaces/surface_aggregator_unittest.cc", |
857 "surfaces/surface_factory_unittest.cc", | |
858 "surfaces/surface_hittest_unittest.cc", | 859 "surfaces/surface_hittest_unittest.cc", |
859 "surfaces/surface_manager_ref_unittest.cc", | 860 "surfaces/surface_manager_ref_unittest.cc", |
860 "surfaces/surface_manager_unittest.cc", | 861 "surfaces/surface_manager_unittest.cc", |
861 "surfaces/surface_sequence_generator_unittest.cc", | 862 "surfaces/surface_sequence_generator_unittest.cc", |
| 863 "surfaces/surface_synchronization_unittest.cc", |
862 "surfaces/surface_unittest.cc", | 864 "surfaces/surface_unittest.cc", |
863 "surfaces/surfaces_pixeltest.cc", | 865 "surfaces/surfaces_pixeltest.cc", |
864 | 866 |
865 # Setup. | 867 # Setup. |
866 "test/cc_test_suite.cc", | 868 "test/cc_test_suite.cc", |
867 "test/cc_test_suite.h", | 869 "test/cc_test_suite.h", |
868 "test/run_all_unittests.cc", | 870 "test/run_all_unittests.cc", |
869 ] | 871 ] |
870 | 872 |
871 if (!is_android) { | 873 if (!is_android) { |
(...skipping 91 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 |