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 758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
769 "base/region_unittest.cc", | 769 "base/region_unittest.cc", |
770 "base/rolling_time_delta_history_unittest.cc", | 770 "base/rolling_time_delta_history_unittest.cc", |
771 "base/rtree_unittest.cc", | 771 "base/rtree_unittest.cc", |
772 "base/simple_enclosed_region_unittest.cc", | 772 "base/simple_enclosed_region_unittest.cc", |
773 "base/tiling_data_unittest.cc", | 773 "base/tiling_data_unittest.cc", |
774 "base/unique_notifier_unittest.cc", | 774 "base/unique_notifier_unittest.cc", |
775 "debug/frame_timing_tracker_unittest.cc", | 775 "debug/frame_timing_tracker_unittest.cc", |
776 "debug/layer_tree_debug_state_unittest.cc", | 776 "debug/layer_tree_debug_state_unittest.cc", |
777 "debug/micro_benchmark_controller_unittest.cc", | 777 "debug/micro_benchmark_controller_unittest.cc", |
778 "debug/rendering_stats_unittest.cc", | 778 "debug/rendering_stats_unittest.cc", |
| 779 "input/layer_selection_bound_unittest.cc", |
779 "input/scroll_state_unittest.cc", | 780 "input/scroll_state_unittest.cc", |
780 "input/top_controls_manager_unittest.cc", | 781 "input/top_controls_manager_unittest.cc", |
781 "layers/delegated_frame_provider_unittest.cc", | 782 "layers/delegated_frame_provider_unittest.cc", |
782 "layers/delegated_frame_resource_collection_unittest.cc", | 783 "layers/delegated_frame_resource_collection_unittest.cc", |
783 "layers/delegated_renderer_layer_impl_unittest.cc", | 784 "layers/delegated_renderer_layer_impl_unittest.cc", |
784 "layers/delegated_renderer_layer_unittest.cc", | 785 "layers/delegated_renderer_layer_unittest.cc", |
785 "layers/heads_up_display_layer_impl_unittest.cc", | 786 "layers/heads_up_display_layer_impl_unittest.cc", |
786 "layers/heads_up_display_unittest.cc", | 787 "layers/heads_up_display_unittest.cc", |
787 "layers/io_surface_layer_impl_unittest.cc", | 788 "layers/io_surface_layer_impl_unittest.cc", |
788 "layers/layer_impl_unittest.cc", | 789 "layers/layer_impl_unittest.cc", |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
979 "//ui/gl", | 980 "//ui/gl", |
980 "//ui/gl:test_support", | 981 "//ui/gl:test_support", |
981 ] | 982 ] |
982 | 983 |
983 if (is_android) { | 984 if (is_android) { |
984 isolate_file = "cc_perftests.isolate" | 985 isolate_file = "cc_perftests.isolate" |
985 } | 986 } |
986 } | 987 } |
987 # When adding support for isolates, please have a look at run-time dependencies | 988 # When adding support for isolates, please have a look at run-time dependencies |
988 # in the cc_unittests_run target in cc_tests.gyp. | 989 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |