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