| 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 819 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 830 "animation/keyframed_animation_curve_unittest.cc", | 830 "animation/keyframed_animation_curve_unittest.cc", |
| 831 "animation/scroll_offset_animation_curve_unittest.cc", | 831 "animation/scroll_offset_animation_curve_unittest.cc", |
| 832 "animation/transform_operations_unittest.cc", | 832 "animation/transform_operations_unittest.cc", |
| 833 "base/contiguous_container_unittest.cc", | 833 "base/contiguous_container_unittest.cc", |
| 834 "base/delayed_unique_notifier_unittest.cc", | 834 "base/delayed_unique_notifier_unittest.cc", |
| 835 "base/float_quad_unittest.cc", | 835 "base/float_quad_unittest.cc", |
| 836 "base/histograms_unittest.cc", | 836 "base/histograms_unittest.cc", |
| 837 "base/index_rect_unittest.cc", | 837 "base/index_rect_unittest.cc", |
| 838 "base/list_container_unittest.cc", | 838 "base/list_container_unittest.cc", |
| 839 "base/math_util_unittest.cc", | 839 "base/math_util_unittest.cc", |
| 840 "base/pyramid_sequence_unittest.cc", |
| 840 "base/random_access_list_container_unittest.cc", | 841 "base/random_access_list_container_unittest.cc", |
| 841 "base/region_unittest.cc", | 842 "base/region_unittest.cc", |
| 842 "base/rolling_time_delta_history_unittest.cc", | 843 "base/rolling_time_delta_history_unittest.cc", |
| 843 "base/rtree_unittest.cc", | 844 "base/rtree_unittest.cc", |
| 844 "base/simple_enclosed_region_unittest.cc", | 845 "base/simple_enclosed_region_unittest.cc", |
| 845 "base/spiral_iterator_unittest.cc", | 846 "base/spiral_iterator_unittest.cc", |
| 846 "base/tiling_data_unittest.cc", | 847 "base/tiling_data_unittest.cc", |
| 847 "base/unique_notifier_unittest.cc", | 848 "base/unique_notifier_unittest.cc", |
| 848 "blimp/compositor_state_deserializer_unittest.cc", | 849 "blimp/compositor_state_deserializer_unittest.cc", |
| 849 "blimp/layer_tree_host_remote_unittest.cc", | 850 "blimp/layer_tree_host_remote_unittest.cc", |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1076 data = [ | 1077 data = [ |
| 1077 "test/data/", | 1078 "test/data/", |
| 1078 | 1079 |
| 1079 # Needed for isolate script to execute. | 1080 # Needed for isolate script to execute. |
| 1080 "//testing/scripts/common.py", | 1081 "//testing/scripts/common.py", |
| 1081 "//testing/xvfb.py", | 1082 "//testing/xvfb.py", |
| 1082 "//testing/scripts/run_gtest_perf_test.py", | 1083 "//testing/scripts/run_gtest_perf_test.py", |
| 1083 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 1084 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 1084 ] | 1085 ] |
| 1085 } | 1086 } |
| OLD | NEW |