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 898 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
909 "scheduler/compositor_timing_history_unittest.cc", | 909 "scheduler/compositor_timing_history_unittest.cc", |
910 "scheduler/delay_based_time_source_unittest.cc", | 910 "scheduler/delay_based_time_source_unittest.cc", |
911 "scheduler/scheduler_state_machine_unittest.cc", | 911 "scheduler/scheduler_state_machine_unittest.cc", |
912 "scheduler/scheduler_unittest.cc", | 912 "scheduler/scheduler_unittest.cc", |
913 "test/begin_frame_source_test_unittest.cc", | 913 "test/begin_frame_source_test_unittest.cc", |
914 "test/layer_tree_json_parser_unittest.cc", | 914 "test/layer_tree_json_parser_unittest.cc", |
915 "test/mock_helper_unittest.cc", | 915 "test/mock_helper_unittest.cc", |
916 "test/ordered_simple_task_runner_unittest.cc", | 916 "test/ordered_simple_task_runner_unittest.cc", |
917 "test/test_web_graphics_context_3d_unittest.cc", | 917 "test/test_web_graphics_context_3d_unittest.cc", |
918 "tiles/gpu_image_decode_controller_unittest.cc", | 918 "tiles/gpu_image_decode_controller_unittest.cc", |
| 919 "tiles/image_manager_unittest.cc", |
919 "tiles/mipmap_util_unittest.cc", | 920 "tiles/mipmap_util_unittest.cc", |
920 "tiles/picture_layer_tiling_set_unittest.cc", | 921 "tiles/picture_layer_tiling_set_unittest.cc", |
921 "tiles/picture_layer_tiling_unittest.cc", | 922 "tiles/picture_layer_tiling_unittest.cc", |
922 "tiles/software_image_decode_controller_unittest.cc", | 923 "tiles/software_image_decode_controller_unittest.cc", |
923 "tiles/tile_manager_unittest.cc", | 924 "tiles/tile_manager_unittest.cc", |
924 "tiles/tile_priority_unittest.cc", | 925 "tiles/tile_priority_unittest.cc", |
925 "trees/blocking_task_runner_unittest.cc", | 926 "trees/blocking_task_runner_unittest.cc", |
926 "trees/damage_tracker_unittest.cc", | 927 "trees/damage_tracker_unittest.cc", |
927 "trees/layer_tree_host_common_unittest.cc", | 928 "trees/layer_tree_host_common_unittest.cc", |
928 "trees/layer_tree_host_impl_unittest.cc", | 929 "trees/layer_tree_host_impl_unittest.cc", |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1053 "//ui/gl:test_support", | 1054 "//ui/gl:test_support", |
1054 ] | 1055 ] |
1055 | 1056 |
1056 # This target should not require the Chrome executable to run. | 1057 # This target should not require the Chrome executable to run. |
1057 assert_no_deps = [ "//chrome" ] | 1058 assert_no_deps = [ "//chrome" ] |
1058 | 1059 |
1059 data = [ | 1060 data = [ |
1060 "test/data/", | 1061 "test/data/", |
1061 ] | 1062 ] |
1062 } | 1063 } |
OLD | NEW |