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 846 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
857 "tiles/tile_priority_unittest.cc", | 857 "tiles/tile_priority_unittest.cc", |
858 "trees/blocking_task_runner_unittest.cc", | 858 "trees/blocking_task_runner_unittest.cc", |
859 "trees/damage_tracker_unittest.cc", | 859 "trees/damage_tracker_unittest.cc", |
860 "trees/layer_tree_host_common_unittest.cc", | 860 "trees/layer_tree_host_common_unittest.cc", |
861 "trees/layer_tree_host_impl_unittest.cc", | 861 "trees/layer_tree_host_impl_unittest.cc", |
862 "trees/layer_tree_host_pixeltest_blending.cc", | 862 "trees/layer_tree_host_pixeltest_blending.cc", |
863 "trees/layer_tree_host_pixeltest_filters.cc", | 863 "trees/layer_tree_host_pixeltest_filters.cc", |
864 "trees/layer_tree_host_pixeltest_masks.cc", | 864 "trees/layer_tree_host_pixeltest_masks.cc", |
865 "trees/layer_tree_host_pixeltest_readback.cc", | 865 "trees/layer_tree_host_pixeltest_readback.cc", |
866 "trees/layer_tree_host_pixeltest_synchronous.cc", | 866 "trees/layer_tree_host_pixeltest_synchronous.cc", |
| 867 "trees/layer_tree_host_pixeltest_tiles.cc", |
867 "trees/layer_tree_host_unittest.cc", | 868 "trees/layer_tree_host_unittest.cc", |
868 "trees/layer_tree_host_unittest_animation.cc", | 869 "trees/layer_tree_host_unittest_animation.cc", |
869 "trees/layer_tree_host_unittest_context.cc", | 870 "trees/layer_tree_host_unittest_context.cc", |
870 "trees/layer_tree_host_unittest_copyrequest.cc", | 871 "trees/layer_tree_host_unittest_copyrequest.cc", |
871 "trees/layer_tree_host_unittest_damage.cc", | 872 "trees/layer_tree_host_unittest_damage.cc", |
872 "trees/layer_tree_host_unittest_delegated.cc", | 873 "trees/layer_tree_host_unittest_delegated.cc", |
873 "trees/layer_tree_host_unittest_no_message_loop.cc", | 874 "trees/layer_tree_host_unittest_no_message_loop.cc", |
874 "trees/layer_tree_host_unittest_occlusion.cc", | 875 "trees/layer_tree_host_unittest_occlusion.cc", |
875 "trees/layer_tree_host_unittest_picture.cc", | 876 "trees/layer_tree_host_unittest_picture.cc", |
876 "trees/layer_tree_host_unittest_proxy.cc", | 877 "trees/layer_tree_host_unittest_proxy.cc", |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
952 "//testing/gmock", | 953 "//testing/gmock", |
953 "//testing/gtest", | 954 "//testing/gtest", |
954 "//testing/perf", | 955 "//testing/perf", |
955 "//ui/gfx", | 956 "//ui/gfx", |
956 "//ui/gfx/geometry", | 957 "//ui/gfx/geometry", |
957 "//ui/gl", | 958 "//ui/gl", |
958 ] | 959 ] |
959 } | 960 } |
960 # When adding support for isolates, please have a look at run-time dependencies | 961 # When adding support for isolates, please have a look at run-time dependencies |
961 # in the cc_unittests_run target in cc_tests.gyp. | 962 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |