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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
850 "animation/scroll_offset_animation_curve_unittest.cc", | 852 "animation/scroll_offset_animation_curve_unittest.cc", |
851 "animation/transform_operations_unittest.cc", | 853 "animation/transform_operations_unittest.cc", |
852 | 854 |
853 # Surfaces test files. | 855 # Surfaces test files. |
854 "surfaces/compositor_frame_sink_support_unittest.cc", | 856 "surfaces/compositor_frame_sink_support_unittest.cc", |
855 "surfaces/direct_compositor_frame_sink_unittest.cc", | 857 "surfaces/direct_compositor_frame_sink_unittest.cc", |
856 "surfaces/display_scheduler_unittest.cc", | 858 "surfaces/display_scheduler_unittest.cc", |
857 "surfaces/display_unittest.cc", | 859 "surfaces/display_unittest.cc", |
858 "surfaces/referenced_surface_tracker_unittest.cc", | 860 "surfaces/referenced_surface_tracker_unittest.cc", |
859 "surfaces/surface_aggregator_unittest.cc", | 861 "surfaces/surface_aggregator_unittest.cc", |
860 "surfaces/surface_factory_unittest.cc", | |
861 "surfaces/surface_hittest_unittest.cc", | 862 "surfaces/surface_hittest_unittest.cc", |
862 "surfaces/surface_manager_ref_unittest.cc", | 863 "surfaces/surface_manager_ref_unittest.cc", |
863 "surfaces/surface_manager_unittest.cc", | 864 "surfaces/surface_manager_unittest.cc", |
864 "surfaces/surface_sequence_generator_unittest.cc", | 865 "surfaces/surface_sequence_generator_unittest.cc", |
| 866 "surfaces/surface_synchronization_unittest.cc", |
865 "surfaces/surface_unittest.cc", | 867 "surfaces/surface_unittest.cc", |
866 "surfaces/surfaces_pixeltest.cc", | 868 "surfaces/surfaces_pixeltest.cc", |
867 | 869 |
868 # Setup. | 870 # Setup. |
869 "test/cc_test_suite.cc", | 871 "test/cc_test_suite.cc", |
870 "test/cc_test_suite.h", | 872 "test/cc_test_suite.h", |
871 "test/run_all_unittests.cc", | 873 "test/run_all_unittests.cc", |
872 ] | 874 ] |
873 | 875 |
874 if (!is_android) { | 876 if (!is_android) { |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
966 data = [ | 968 data = [ |
967 "test/data/", | 969 "test/data/", |
968 | 970 |
969 # Needed for isolate script to execute. | 971 # Needed for isolate script to execute. |
970 "//testing/scripts/common.py", | 972 "//testing/scripts/common.py", |
971 "//testing/xvfb.py", | 973 "//testing/xvfb.py", |
972 "//testing/scripts/run_gtest_perf_test.py", | 974 "//testing/scripts/run_gtest_perf_test.py", |
973 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 975 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
974 ] | 976 ] |
975 } | 977 } |
OLD | NEW |