| 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 969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 980 "trees/swap_promise_manager_unittest.cc", | 980 "trees/swap_promise_manager_unittest.cc", |
| 981 "trees/tree_synchronizer_unittest.cc", | 981 "trees/tree_synchronizer_unittest.cc", |
| 982 | 982 |
| 983 # Surfaces test files. | 983 # Surfaces test files. |
| 984 "surfaces/direct_compositor_frame_sink_unittest.cc", | 984 "surfaces/direct_compositor_frame_sink_unittest.cc", |
| 985 "surfaces/display_scheduler_unittest.cc", | 985 "surfaces/display_scheduler_unittest.cc", |
| 986 "surfaces/display_unittest.cc", | 986 "surfaces/display_unittest.cc", |
| 987 "surfaces/surface_aggregator_unittest.cc", | 987 "surfaces/surface_aggregator_unittest.cc", |
| 988 "surfaces/surface_factory_unittest.cc", | 988 "surfaces/surface_factory_unittest.cc", |
| 989 "surfaces/surface_hittest_unittest.cc", | 989 "surfaces/surface_hittest_unittest.cc", |
| 990 "surfaces/surface_manager_ref_unittest.cc", |
| 990 "surfaces/surface_manager_unittest.cc", | 991 "surfaces/surface_manager_unittest.cc", |
| 991 "surfaces/surface_sequence_generator_unittest.cc", | 992 "surfaces/surface_sequence_generator_unittest.cc", |
| 992 "surfaces/surface_unittest.cc", | 993 "surfaces/surface_unittest.cc", |
| 993 "surfaces/surfaces_pixeltest.cc", | 994 "surfaces/surfaces_pixeltest.cc", |
| 994 | 995 |
| 995 # Setup. | 996 # Setup. |
| 996 "test/cc_test_suite.cc", | 997 "test/cc_test_suite.cc", |
| 997 "test/run_all_unittests.cc", | 998 "test/run_all_unittests.cc", |
| 998 ] | 999 ] |
| 999 | 1000 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1079 "//ui/gl:test_support", | 1080 "//ui/gl:test_support", |
| 1080 ] | 1081 ] |
| 1081 | 1082 |
| 1082 # This target should not require the Chrome executable to run. | 1083 # This target should not require the Chrome executable to run. |
| 1083 assert_no_deps = [ "//chrome" ] | 1084 assert_no_deps = [ "//chrome" ] |
| 1084 | 1085 |
| 1085 data = [ | 1086 data = [ |
| 1086 "test/data/", | 1087 "test/data/", |
| 1087 ] | 1088 ] |
| 1088 } | 1089 } |
| OLD | NEW |