| 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("//cc/cc.gni") | 6 import("//cc/cc.gni") |
| 7 | 7 |
| 8 cc_component("cc") { | 8 cc_component("cc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "blimp/client_picture_cache.h", | 10 "blimp/client_picture_cache.h", |
| (...skipping 916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 927 "animation/animation_unittest.cc", | 927 "animation/animation_unittest.cc", |
| 928 "animation/element_animations_unittest.cc", | 928 "animation/element_animations_unittest.cc", |
| 929 "animation/keyframed_animation_curve_unittest.cc", | 929 "animation/keyframed_animation_curve_unittest.cc", |
| 930 "animation/scroll_offset_animation_curve_unittest.cc", | 930 "animation/scroll_offset_animation_curve_unittest.cc", |
| 931 "animation/transform_operations_unittest.cc", | 931 "animation/transform_operations_unittest.cc", |
| 932 | 932 |
| 933 # Surfaces test files. | 933 # Surfaces test files. |
| 934 "surfaces/direct_compositor_frame_sink_unittest.cc", | 934 "surfaces/direct_compositor_frame_sink_unittest.cc", |
| 935 "surfaces/display_scheduler_unittest.cc", | 935 "surfaces/display_scheduler_unittest.cc", |
| 936 "surfaces/display_unittest.cc", | 936 "surfaces/display_unittest.cc", |
| 937 "surfaces/embedded_surface_tracker_unittest.cc", |
| 937 "surfaces/surface_aggregator_unittest.cc", | 938 "surfaces/surface_aggregator_unittest.cc", |
| 938 "surfaces/surface_factory_unittest.cc", | 939 "surfaces/surface_factory_unittest.cc", |
| 939 "surfaces/surface_hittest_unittest.cc", | 940 "surfaces/surface_hittest_unittest.cc", |
| 940 "surfaces/surface_manager_ref_unittest.cc", | 941 "surfaces/surface_manager_ref_unittest.cc", |
| 941 "surfaces/surface_manager_unittest.cc", | 942 "surfaces/surface_manager_unittest.cc", |
| 942 "surfaces/surface_sequence_generator_unittest.cc", | 943 "surfaces/surface_sequence_generator_unittest.cc", |
| 943 "surfaces/surface_unittest.cc", | 944 "surfaces/surface_unittest.cc", |
| 944 "surfaces/surfaces_pixeltest.cc", | 945 "surfaces/surfaces_pixeltest.cc", |
| 945 | 946 |
| 946 # Setup. | 947 # Setup. |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1037 data = [ | 1038 data = [ |
| 1038 "test/data/", | 1039 "test/data/", |
| 1039 | 1040 |
| 1040 # Needed for isolate script to execute. | 1041 # Needed for isolate script to execute. |
| 1041 "//testing/scripts/common.py", | 1042 "//testing/scripts/common.py", |
| 1042 "//testing/xvfb.py", | 1043 "//testing/xvfb.py", |
| 1043 "//testing/scripts/run_gtest_perf_test.py", | 1044 "//testing/scripts/run_gtest_perf_test.py", |
| 1044 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 1045 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 1045 ] | 1046 ] |
| 1046 } | 1047 } |
| OLD | NEW |