| 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("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("cc") { | 8 component("cc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "animation/animation.cc", | 10 "animation/animation.cc", |
| (...skipping 864 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 875 "scheduler/commit_earlyout_reason_unittest.cc", | 875 "scheduler/commit_earlyout_reason_unittest.cc", |
| 876 "scheduler/compositor_timing_history_unittest.cc", | 876 "scheduler/compositor_timing_history_unittest.cc", |
| 877 "scheduler/delay_based_time_source_unittest.cc", | 877 "scheduler/delay_based_time_source_unittest.cc", |
| 878 "scheduler/scheduler_state_machine_unittest.cc", | 878 "scheduler/scheduler_state_machine_unittest.cc", |
| 879 "scheduler/scheduler_unittest.cc", | 879 "scheduler/scheduler_unittest.cc", |
| 880 "test/begin_frame_source_test_unittest.cc", | 880 "test/begin_frame_source_test_unittest.cc", |
| 881 "test/layer_tree_json_parser_unittest.cc", | 881 "test/layer_tree_json_parser_unittest.cc", |
| 882 "test/mock_helper_unittest.cc", | 882 "test/mock_helper_unittest.cc", |
| 883 "test/ordered_simple_task_runner_unittest.cc", | 883 "test/ordered_simple_task_runner_unittest.cc", |
| 884 "test/test_web_graphics_context_3d_unittest.cc", | 884 "test/test_web_graphics_context_3d_unittest.cc", |
| 885 "tiles/gpu_image_decode_controller_unittest.cc", |
| 885 "tiles/picture_layer_tiling_set_unittest.cc", | 886 "tiles/picture_layer_tiling_set_unittest.cc", |
| 886 "tiles/picture_layer_tiling_unittest.cc", | 887 "tiles/picture_layer_tiling_unittest.cc", |
| 887 "tiles/software_image_decode_controller_unittest.cc", | 888 "tiles/software_image_decode_controller_unittest.cc", |
| 888 "tiles/tile_manager_unittest.cc", | 889 "tiles/tile_manager_unittest.cc", |
| 889 "tiles/tile_priority_unittest.cc", | 890 "tiles/tile_priority_unittest.cc", |
| 890 "trees/blocking_task_runner_unittest.cc", | 891 "trees/blocking_task_runner_unittest.cc", |
| 891 "trees/damage_tracker_unittest.cc", | 892 "trees/damage_tracker_unittest.cc", |
| 892 "trees/layer_tree_host_common_unittest.cc", | 893 "trees/layer_tree_host_common_unittest.cc", |
| 893 "trees/layer_tree_host_impl_unittest.cc", | 894 "trees/layer_tree_host_impl_unittest.cc", |
| 894 "trees/layer_tree_host_pixeltest_blending.cc", | 895 "trees/layer_tree_host_pixeltest_blending.cc", |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1008 "//ui/gl", | 1009 "//ui/gl", |
| 1009 "//ui/gl:test_support", | 1010 "//ui/gl:test_support", |
| 1010 ] | 1011 ] |
| 1011 | 1012 |
| 1012 if (is_android) { | 1013 if (is_android) { |
| 1013 isolate_file = "cc_perftests.isolate" | 1014 isolate_file = "cc_perftests.isolate" |
| 1014 } | 1015 } |
| 1015 } | 1016 } |
| 1016 # When adding support for isolates, please have a look at run-time dependencies | 1017 # When adding support for isolates, please have a look at run-time dependencies |
| 1017 # in the cc_unittests_run target in cc_tests.gyp. | 1018 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |