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 857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
868 "trees/layer_tree_host_unittest_context.cc", | 868 "trees/layer_tree_host_unittest_context.cc", |
869 "trees/layer_tree_host_unittest_copyrequest.cc", | 869 "trees/layer_tree_host_unittest_copyrequest.cc", |
870 "trees/layer_tree_host_unittest_damage.cc", | 870 "trees/layer_tree_host_unittest_damage.cc", |
871 "trees/layer_tree_host_unittest_delegated.cc", | 871 "trees/layer_tree_host_unittest_delegated.cc", |
872 "trees/layer_tree_host_unittest_occlusion.cc", | 872 "trees/layer_tree_host_unittest_occlusion.cc", |
873 "trees/layer_tree_host_unittest_picture.cc", | 873 "trees/layer_tree_host_unittest_picture.cc", |
874 "trees/layer_tree_host_unittest_proxy.cc", | 874 "trees/layer_tree_host_unittest_proxy.cc", |
875 "trees/layer_tree_host_unittest_scroll.cc", | 875 "trees/layer_tree_host_unittest_scroll.cc", |
876 "trees/layer_tree_host_unittest_video.cc", | 876 "trees/layer_tree_host_unittest_video.cc", |
877 "trees/layer_tree_impl_unittest.cc", | 877 "trees/layer_tree_impl_unittest.cc", |
| 878 "trees/layer_tree_settings_unittest.cc", |
878 "trees/occlusion_tracker_unittest.cc", | 879 "trees/occlusion_tracker_unittest.cc", |
879 "trees/occlusion_unittest.cc", | 880 "trees/occlusion_unittest.cc", |
880 "trees/property_tree_unittest.cc", | 881 "trees/property_tree_unittest.cc", |
881 "trees/threaded_channel_unittest.cc", | 882 "trees/threaded_channel_unittest.cc", |
882 "trees/tree_synchronizer_unittest.cc", | 883 "trees/tree_synchronizer_unittest.cc", |
883 | 884 |
884 # Surfaces test files. | 885 # Surfaces test files. |
885 "surfaces/display_scheduler_unittest.cc", | 886 "surfaces/display_scheduler_unittest.cc", |
886 "surfaces/display_unittest.cc", | 887 "surfaces/display_unittest.cc", |
887 "surfaces/surface_aggregator_unittest.cc", | 888 "surfaces/surface_aggregator_unittest.cc", |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
966 "//ui/gl", | 967 "//ui/gl", |
967 "//ui/gl:test_support", | 968 "//ui/gl:test_support", |
968 ] | 969 ] |
969 | 970 |
970 if (is_android) { | 971 if (is_android) { |
971 isolate_file = "cc_perftests.isolate" | 972 isolate_file = "cc_perftests.isolate" |
972 } | 973 } |
973 } | 974 } |
974 # When adding support for isolates, please have a look at run-time dependencies | 975 # When adding support for isolates, please have a look at run-time dependencies |
975 # in the cc_unittests_run target in cc_tests.gyp. | 976 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |