| 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 807 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 818 "resources/scoped_resource_unittest.cc", | 818 "resources/scoped_resource_unittest.cc", |
| 819 "resources/video_resource_updater_unittest.cc", | 819 "resources/video_resource_updater_unittest.cc", |
| 820 "scheduler/begin_frame_source_unittest.cc", | 820 "scheduler/begin_frame_source_unittest.cc", |
| 821 "scheduler/compositor_timing_history_unittest.cc", | 821 "scheduler/compositor_timing_history_unittest.cc", |
| 822 "scheduler/delay_based_time_source_unittest.cc", | 822 "scheduler/delay_based_time_source_unittest.cc", |
| 823 "scheduler/scheduler_state_machine_unittest.cc", | 823 "scheduler/scheduler_state_machine_unittest.cc", |
| 824 "scheduler/scheduler_unittest.cc", | 824 "scheduler/scheduler_unittest.cc", |
| 825 "test/layer_tree_json_parser_unittest.cc", | 825 "test/layer_tree_json_parser_unittest.cc", |
| 826 "test/ordered_simple_task_runner_unittest.cc", | 826 "test/ordered_simple_task_runner_unittest.cc", |
| 827 "test/test_web_graphics_context_3d_unittest.cc", | 827 "test/test_web_graphics_context_3d_unittest.cc", |
| 828 "tiles/image_decode_controller_unittest.cc", |
| 828 "tiles/picture_layer_tiling_set_unittest.cc", | 829 "tiles/picture_layer_tiling_set_unittest.cc", |
| 829 "tiles/picture_layer_tiling_unittest.cc", | 830 "tiles/picture_layer_tiling_unittest.cc", |
| 830 "tiles/tile_manager_unittest.cc", | 831 "tiles/tile_manager_unittest.cc", |
| 831 "tiles/tile_priority_unittest.cc", | 832 "tiles/tile_priority_unittest.cc", |
| 832 "trees/blocking_task_runner_unittest.cc", | 833 "trees/blocking_task_runner_unittest.cc", |
| 833 "trees/damage_tracker_unittest.cc", | 834 "trees/damage_tracker_unittest.cc", |
| 834 "trees/layer_tree_host_common_unittest.cc", | 835 "trees/layer_tree_host_common_unittest.cc", |
| 835 "trees/layer_tree_host_impl_unittest.cc", | 836 "trees/layer_tree_host_impl_unittest.cc", |
| 836 "trees/layer_tree_host_pixeltest_blending.cc", | 837 "trees/layer_tree_host_pixeltest_blending.cc", |
| 837 "trees/layer_tree_host_pixeltest_filters.cc", | 838 "trees/layer_tree_host_pixeltest_filters.cc", |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 943 "//ui/gl", | 944 "//ui/gl", |
| 944 "//ui/gl:test_support", | 945 "//ui/gl:test_support", |
| 945 ] | 946 ] |
| 946 | 947 |
| 947 if (is_android) { | 948 if (is_android) { |
| 948 isolate_file = "cc_perftests.isolate" | 949 isolate_file = "cc_perftests.isolate" |
| 949 } | 950 } |
| 950 } | 951 } |
| 951 # When adding support for isolates, please have a look at run-time dependencies | 952 # When adding support for isolates, please have a look at run-time dependencies |
| 952 # in the cc_unittests_run target in cc_tests.gyp. | 953 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |