| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1084 | 1085 |
| 1085 data = [ | 1086 data = [ |
| 1086 "test/data/", | 1087 "test/data/", |
| 1087 | 1088 |
| 1088 # Needed for isolate script to execute. | 1089 # Needed for isolate script to execute. |
| 1089 "//testing/scripts/common.py", | 1090 "//testing/scripts/common.py", |
| 1090 "//testing/xvfb.py", | 1091 "//testing/xvfb.py", |
| 1091 "//testing/scripts/run_gtest_perf_test.py", | 1092 "//testing/scripts/run_gtest_perf_test.py", |
| 1092 ] | 1093 ] |
| 1093 } | 1094 } |
| OLD | NEW |