| 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 872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 883 "trees/layer_tree_host_unittest_animation_timelines.cc", | 883 "trees/layer_tree_host_unittest_animation_timelines.cc", |
| 884 "trees/layer_tree_host_unittest_context.cc", | 884 "trees/layer_tree_host_unittest_context.cc", |
| 885 "trees/layer_tree_host_unittest_copyrequest.cc", | 885 "trees/layer_tree_host_unittest_copyrequest.cc", |
| 886 "trees/layer_tree_host_unittest_damage.cc", | 886 "trees/layer_tree_host_unittest_damage.cc", |
| 887 "trees/layer_tree_host_unittest_delegated.cc", | 887 "trees/layer_tree_host_unittest_delegated.cc", |
| 888 "trees/layer_tree_host_unittest_occlusion.cc", | 888 "trees/layer_tree_host_unittest_occlusion.cc", |
| 889 "trees/layer_tree_host_unittest_picture.cc", | 889 "trees/layer_tree_host_unittest_picture.cc", |
| 890 "trees/layer_tree_host_unittest_proxy.cc", | 890 "trees/layer_tree_host_unittest_proxy.cc", |
| 891 "trees/layer_tree_host_unittest_record_gpu_histogram.cc", | 891 "trees/layer_tree_host_unittest_record_gpu_histogram.cc", |
| 892 "trees/layer_tree_host_unittest_scroll.cc", | 892 "trees/layer_tree_host_unittest_scroll.cc", |
| 893 "trees/layer_tree_host_unittest_serialization.cc", |
| 893 "trees/layer_tree_host_unittest_video.cc", | 894 "trees/layer_tree_host_unittest_video.cc", |
| 894 "trees/layer_tree_impl_unittest.cc", | 895 "trees/layer_tree_impl_unittest.cc", |
| 895 "trees/layer_tree_settings_unittest.cc", | 896 "trees/layer_tree_settings_unittest.cc", |
| 896 "trees/occlusion_tracker_unittest.cc", | 897 "trees/occlusion_tracker_unittest.cc", |
| 897 "trees/occlusion_unittest.cc", | 898 "trees/occlusion_unittest.cc", |
| 898 "trees/property_tree_unittest.cc", | 899 "trees/property_tree_unittest.cc", |
| 899 "trees/proxy_impl_unittest.cc", | 900 "trees/proxy_impl_unittest.cc", |
| 900 "trees/threaded_channel_unittest.cc", | 901 "trees/threaded_channel_unittest.cc", |
| 901 "trees/tree_synchronizer_unittest.cc", | 902 "trees/tree_synchronizer_unittest.cc", |
| 902 | 903 |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 985 "//ui/gl", | 986 "//ui/gl", |
| 986 "//ui/gl:test_support", | 987 "//ui/gl:test_support", |
| 987 ] | 988 ] |
| 988 | 989 |
| 989 if (is_android) { | 990 if (is_android) { |
| 990 isolate_file = "cc_perftests.isolate" | 991 isolate_file = "cc_perftests.isolate" |
| 991 } | 992 } |
| 992 } | 993 } |
| 993 # When adding support for isolates, please have a look at run-time dependencies | 994 # When adding support for isolates, please have a look at run-time dependencies |
| 994 # in the cc_unittests_run target in cc_tests.gyp. | 995 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |