| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("cc") { | 8 component("cc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "animation/animation.cc", | 10 "animation/animation.cc", |
| (...skipping 916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 927 "trees/layer_tree_host_unittest_damage.cc", | 927 "trees/layer_tree_host_unittest_damage.cc", |
| 928 "trees/layer_tree_host_unittest_occlusion.cc", | 928 "trees/layer_tree_host_unittest_occlusion.cc", |
| 929 "trees/layer_tree_host_unittest_picture.cc", | 929 "trees/layer_tree_host_unittest_picture.cc", |
| 930 "trees/layer_tree_host_unittest_proxy.cc", | 930 "trees/layer_tree_host_unittest_proxy.cc", |
| 931 "trees/layer_tree_host_unittest_record_gpu_histogram.cc", | 931 "trees/layer_tree_host_unittest_record_gpu_histogram.cc", |
| 932 "trees/layer_tree_host_unittest_remote_server.cc", | 932 "trees/layer_tree_host_unittest_remote_server.cc", |
| 933 "trees/layer_tree_host_unittest_scroll.cc", | 933 "trees/layer_tree_host_unittest_scroll.cc", |
| 934 "trees/layer_tree_host_unittest_serialization.cc", | 934 "trees/layer_tree_host_unittest_serialization.cc", |
| 935 "trees/layer_tree_host_unittest_video.cc", | 935 "trees/layer_tree_host_unittest_video.cc", |
| 936 "trees/layer_tree_impl_unittest.cc", | 936 "trees/layer_tree_impl_unittest.cc", |
| 937 "trees/layer_tree_settings_unittest.cc", | |
| 938 "trees/occlusion_tracker_unittest.cc", | 937 "trees/occlusion_tracker_unittest.cc", |
| 939 "trees/occlusion_unittest.cc", | 938 "trees/occlusion_unittest.cc", |
| 940 "trees/property_tree_unittest.cc", | 939 "trees/property_tree_unittest.cc", |
| 941 "trees/proxy_common_unittest.cc", | 940 "trees/proxy_common_unittest.cc", |
| 942 "trees/tree_synchronizer_unittest.cc", | 941 "trees/tree_synchronizer_unittest.cc", |
| 943 | 942 |
| 944 # Surfaces test files. | 943 # Surfaces test files. |
| 945 "surfaces/display_scheduler_unittest.cc", | 944 "surfaces/display_scheduler_unittest.cc", |
| 946 "surfaces/display_unittest.cc", | 945 "surfaces/display_unittest.cc", |
| 947 "surfaces/surface_aggregator_unittest.cc", | 946 "surfaces/surface_aggregator_unittest.cc", |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1036 "//ui/gfx/geometry", | 1035 "//ui/gfx/geometry", |
| 1037 "//ui/gl", | 1036 "//ui/gl", |
| 1038 "//ui/gl:test_support", | 1037 "//ui/gl:test_support", |
| 1039 ] | 1038 ] |
| 1040 | 1039 |
| 1041 # This target should not require the Chrome executable to run. | 1040 # This target should not require the Chrome executable to run. |
| 1042 assert_no_deps = [ "//chrome" ] | 1041 assert_no_deps = [ "//chrome" ] |
| 1043 } | 1042 } |
| 1044 # When adding support for isolates, please have a look at run-time dependencies | 1043 # When adding support for isolates, please have a look at run-time dependencies |
| 1045 # in the cc_unittests_run target in cc_tests.gyp. | 1044 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |