| 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 967 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 978 "trees/swap_promise_manager_unittest.cc", | 978 "trees/swap_promise_manager_unittest.cc", |
| 979 "trees/tree_synchronizer_unittest.cc", | 979 "trees/tree_synchronizer_unittest.cc", |
| 980 | 980 |
| 981 # Surfaces test files. | 981 # Surfaces test files. |
| 982 "surfaces/direct_compositor_frame_sink_unittest.cc", | 982 "surfaces/direct_compositor_frame_sink_unittest.cc", |
| 983 "surfaces/display_scheduler_unittest.cc", | 983 "surfaces/display_scheduler_unittest.cc", |
| 984 "surfaces/display_unittest.cc", | 984 "surfaces/display_unittest.cc", |
| 985 "surfaces/surface_aggregator_unittest.cc", | 985 "surfaces/surface_aggregator_unittest.cc", |
| 986 "surfaces/surface_factory_unittest.cc", | 986 "surfaces/surface_factory_unittest.cc", |
| 987 "surfaces/surface_hittest_unittest.cc", | 987 "surfaces/surface_hittest_unittest.cc", |
| 988 "surfaces/surface_manager_ref_unittest.cc", |
| 988 "surfaces/surface_manager_unittest.cc", | 989 "surfaces/surface_manager_unittest.cc", |
| 989 "surfaces/surface_sequence_generator_unittest.cc", | 990 "surfaces/surface_sequence_generator_unittest.cc", |
| 990 "surfaces/surface_unittest.cc", | 991 "surfaces/surface_unittest.cc", |
| 991 "surfaces/surfaces_pixeltest.cc", | 992 "surfaces/surfaces_pixeltest.cc", |
| 992 | 993 |
| 993 # Setup. | 994 # Setup. |
| 994 "test/cc_test_suite.cc", | 995 "test/cc_test_suite.cc", |
| 995 "test/run_all_unittests.cc", | 996 "test/run_all_unittests.cc", |
| 996 ] | 997 ] |
| 997 | 998 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1082 | 1083 |
| 1083 data = [ | 1084 data = [ |
| 1084 "test/data/", | 1085 "test/data/", |
| 1085 | 1086 |
| 1086 # Needed for isolate script to execute. | 1087 # Needed for isolate script to execute. |
| 1087 "//testing/scripts/common.py", | 1088 "//testing/scripts/common.py", |
| 1088 "//testing/xvfb.py", | 1089 "//testing/xvfb.py", |
| 1089 "//testing/scripts/run_gtest_perf_test.py", | 1090 "//testing/scripts/run_gtest_perf_test.py", |
| 1090 ] | 1091 ] |
| 1091 } | 1092 } |
| OLD | NEW |