| 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 866 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 877 "trees/layer_tree_host_unittest_context.cc", | 877 "trees/layer_tree_host_unittest_context.cc", |
| 878 "trees/layer_tree_host_unittest_copyrequest.cc", | 878 "trees/layer_tree_host_unittest_copyrequest.cc", |
| 879 "trees/layer_tree_host_unittest_damage.cc", | 879 "trees/layer_tree_host_unittest_damage.cc", |
| 880 "trees/layer_tree_host_unittest_delegated.cc", | 880 "trees/layer_tree_host_unittest_delegated.cc", |
| 881 "trees/layer_tree_host_unittest_occlusion.cc", | 881 "trees/layer_tree_host_unittest_occlusion.cc", |
| 882 "trees/layer_tree_host_unittest_picture.cc", | 882 "trees/layer_tree_host_unittest_picture.cc", |
| 883 "trees/layer_tree_host_unittest_proxy.cc", | 883 "trees/layer_tree_host_unittest_proxy.cc", |
| 884 "trees/layer_tree_host_unittest_scroll.cc", | 884 "trees/layer_tree_host_unittest_scroll.cc", |
| 885 "trees/layer_tree_host_unittest_video.cc", | 885 "trees/layer_tree_host_unittest_video.cc", |
| 886 "trees/layer_tree_impl_unittest.cc", | 886 "trees/layer_tree_impl_unittest.cc", |
| 887 "trees/layer_tree_settings_unittest.cc", |
| 887 "trees/occlusion_tracker_unittest.cc", | 888 "trees/occlusion_tracker_unittest.cc", |
| 888 "trees/occlusion_unittest.cc", | 889 "trees/occlusion_unittest.cc", |
| 889 "trees/property_tree_unittest.cc", | 890 "trees/property_tree_unittest.cc", |
| 890 "trees/threaded_channel_unittest.cc", | 891 "trees/threaded_channel_unittest.cc", |
| 891 "trees/tree_synchronizer_unittest.cc", | 892 "trees/tree_synchronizer_unittest.cc", |
| 892 | 893 |
| 893 # Surfaces test files. | 894 # Surfaces test files. |
| 894 "surfaces/display_scheduler_unittest.cc", | 895 "surfaces/display_scheduler_unittest.cc", |
| 895 "surfaces/display_unittest.cc", | 896 "surfaces/display_unittest.cc", |
| 896 "surfaces/surface_aggregator_unittest.cc", | 897 "surfaces/surface_aggregator_unittest.cc", |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 975 "//ui/gl", | 976 "//ui/gl", |
| 976 "//ui/gl:test_support", | 977 "//ui/gl:test_support", |
| 977 ] | 978 ] |
| 978 | 979 |
| 979 if (is_android) { | 980 if (is_android) { |
| 980 isolate_file = "cc_perftests.isolate" | 981 isolate_file = "cc_perftests.isolate" |
| 981 } | 982 } |
| 982 } | 983 } |
| 983 # When adding support for isolates, please have a look at run-time dependencies | 984 # When adding support for isolates, please have a look at run-time dependencies |
| 984 # in the cc_unittests_run target in cc_tests.gyp. | 985 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |