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