| 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 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 859 "scheduler/commit_earlyout_reason_unittest.cc", | 859 "scheduler/commit_earlyout_reason_unittest.cc", |
| 860 "scheduler/compositor_timing_history_unittest.cc", | 860 "scheduler/compositor_timing_history_unittest.cc", |
| 861 "scheduler/delay_based_time_source_unittest.cc", | 861 "scheduler/delay_based_time_source_unittest.cc", |
| 862 "scheduler/scheduler_state_machine_unittest.cc", | 862 "scheduler/scheduler_state_machine_unittest.cc", |
| 863 "scheduler/scheduler_unittest.cc", | 863 "scheduler/scheduler_unittest.cc", |
| 864 "test/begin_frame_source_test_unittest.cc", | 864 "test/begin_frame_source_test_unittest.cc", |
| 865 "test/layer_tree_json_parser_unittest.cc", | 865 "test/layer_tree_json_parser_unittest.cc", |
| 866 "test/mock_helper_unittest.cc", | 866 "test/mock_helper_unittest.cc", |
| 867 "test/ordered_simple_task_runner_unittest.cc", | 867 "test/ordered_simple_task_runner_unittest.cc", |
| 868 "test/test_web_graphics_context_3d_unittest.cc", | 868 "test/test_web_graphics_context_3d_unittest.cc", |
| 869 "tiles/gpu_image_decode_controller_unittest.cc", |
| 869 "tiles/picture_layer_tiling_set_unittest.cc", | 870 "tiles/picture_layer_tiling_set_unittest.cc", |
| 870 "tiles/picture_layer_tiling_unittest.cc", | 871 "tiles/picture_layer_tiling_unittest.cc", |
| 871 "tiles/software_image_decode_controller_unittest.cc", | 872 "tiles/software_image_decode_controller_unittest.cc", |
| 872 "tiles/tile_manager_unittest.cc", | 873 "tiles/tile_manager_unittest.cc", |
| 873 "tiles/tile_priority_unittest.cc", | 874 "tiles/tile_priority_unittest.cc", |
| 874 "trees/blocking_task_runner_unittest.cc", | 875 "trees/blocking_task_runner_unittest.cc", |
| 875 "trees/damage_tracker_unittest.cc", | 876 "trees/damage_tracker_unittest.cc", |
| 876 "trees/layer_tree_host_common_unittest.cc", | 877 "trees/layer_tree_host_common_unittest.cc", |
| 877 "trees/layer_tree_host_impl_unittest.cc", | 878 "trees/layer_tree_host_impl_unittest.cc", |
| 878 "trees/layer_tree_host_pixeltest_blending.cc", | 879 "trees/layer_tree_host_pixeltest_blending.cc", |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 992 "//ui/gl", | 993 "//ui/gl", |
| 993 "//ui/gl:test_support", | 994 "//ui/gl:test_support", |
| 994 ] | 995 ] |
| 995 | 996 |
| 996 if (is_android) { | 997 if (is_android) { |
| 997 isolate_file = "cc_perftests.isolate" | 998 isolate_file = "cc_perftests.isolate" |
| 998 } | 999 } |
| 999 } | 1000 } |
| 1000 # When adding support for isolates, please have a look at run-time dependencies | 1001 # When adding support for isolates, please have a look at run-time dependencies |
| 1001 # in the cc_unittests_run target in cc_tests.gyp. | 1002 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |