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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 component("cc") { | 7 component("cc") { |
8 sources = [ | 8 sources = [ |
9 "animation/animation.cc", | 9 "animation/animation.cc", |
10 "animation/animation.h", | 10 "animation/animation.h", |
(...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
777 "quads/render_pass_unittest.cc", | 777 "quads/render_pass_unittest.cc", |
778 "raster/scoped_gpu_raster_unittest.cc", | 778 "raster/scoped_gpu_raster_unittest.cc", |
779 "raster/task_graph_runner_unittest.cc", | 779 "raster/task_graph_runner_unittest.cc", |
780 "raster/texture_compressor_etc1_unittest.cc", | 780 "raster/texture_compressor_etc1_unittest.cc", |
781 "raster/tile_task_worker_pool_unittest.cc", | 781 "raster/tile_task_worker_pool_unittest.cc", |
782 "resources/platform_color_unittest.cc", | 782 "resources/platform_color_unittest.cc", |
783 "resources/resource_provider_unittest.cc", | 783 "resources/resource_provider_unittest.cc", |
784 "resources/scoped_resource_unittest.cc", | 784 "resources/scoped_resource_unittest.cc", |
785 "resources/video_resource_updater_unittest.cc", | 785 "resources/video_resource_updater_unittest.cc", |
786 "scheduler/begin_frame_source_unittest.cc", | 786 "scheduler/begin_frame_source_unittest.cc", |
| 787 "scheduler/compositor_timing_history_unittest.cc", |
787 "scheduler/delay_based_time_source_unittest.cc", | 788 "scheduler/delay_based_time_source_unittest.cc", |
788 "scheduler/scheduler_state_machine_unittest.cc", | 789 "scheduler/scheduler_state_machine_unittest.cc", |
789 "scheduler/scheduler_unittest.cc", | 790 "scheduler/scheduler_unittest.cc", |
790 "test/layer_tree_json_parser_unittest.cc", | 791 "test/layer_tree_json_parser_unittest.cc", |
791 "test/test_web_graphics_context_3d_unittest.cc", | 792 "test/test_web_graphics_context_3d_unittest.cc", |
792 "tiles/picture_layer_tiling_set_unittest.cc", | 793 "tiles/picture_layer_tiling_set_unittest.cc", |
793 "tiles/picture_layer_tiling_unittest.cc", | 794 "tiles/picture_layer_tiling_unittest.cc", |
794 "tiles/tile_manager_unittest.cc", | 795 "tiles/tile_manager_unittest.cc", |
795 "tiles/tile_priority_unittest.cc", | 796 "tiles/tile_priority_unittest.cc", |
796 "trees/blocking_task_runner_unittest.cc", | 797 "trees/blocking_task_runner_unittest.cc", |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
892 "//ui/gfx/geometry", | 893 "//ui/gfx/geometry", |
893 "//ui/gl", | 894 "//ui/gl", |
894 ] | 895 ] |
895 | 896 |
896 if (is_android) { | 897 if (is_android) { |
897 isolate_file = "cc_perftests.isolate" | 898 isolate_file = "cc_perftests.isolate" |
898 } | 899 } |
899 } | 900 } |
900 # When adding support for isolates, please have a look at run-time dependencies | 901 # When adding support for isolates, please have a look at run-time dependencies |
901 # in the cc_unittests_run target in cc_tests.gyp. | 902 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |