| 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 "debug/benchmark_instrumentation.cc", | 10 "debug/benchmark_instrumentation.cc", |
| (...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 846 "trees/layer_tree_host_impl_unittest.cc", | 846 "trees/layer_tree_host_impl_unittest.cc", |
| 847 "trees/layer_tree_host_pixeltest_blending.cc", | 847 "trees/layer_tree_host_pixeltest_blending.cc", |
| 848 "trees/layer_tree_host_pixeltest_filters.cc", | 848 "trees/layer_tree_host_pixeltest_filters.cc", |
| 849 "trees/layer_tree_host_pixeltest_masks.cc", | 849 "trees/layer_tree_host_pixeltest_masks.cc", |
| 850 "trees/layer_tree_host_pixeltest_readback.cc", | 850 "trees/layer_tree_host_pixeltest_readback.cc", |
| 851 "trees/layer_tree_host_pixeltest_scrollbars.cc", | 851 "trees/layer_tree_host_pixeltest_scrollbars.cc", |
| 852 "trees/layer_tree_host_pixeltest_synchronous.cc", | 852 "trees/layer_tree_host_pixeltest_synchronous.cc", |
| 853 "trees/layer_tree_host_pixeltest_tiles.cc", | 853 "trees/layer_tree_host_pixeltest_tiles.cc", |
| 854 "trees/layer_tree_host_unittest.cc", | 854 "trees/layer_tree_host_unittest.cc", |
| 855 "trees/layer_tree_host_unittest_animation.cc", | 855 "trees/layer_tree_host_unittest_animation.cc", |
| 856 "trees/layer_tree_host_unittest_checkerimaging.cc", |
| 856 "trees/layer_tree_host_unittest_context.cc", | 857 "trees/layer_tree_host_unittest_context.cc", |
| 857 "trees/layer_tree_host_unittest_copyrequest.cc", | 858 "trees/layer_tree_host_unittest_copyrequest.cc", |
| 858 "trees/layer_tree_host_unittest_damage.cc", | 859 "trees/layer_tree_host_unittest_damage.cc", |
| 859 "trees/layer_tree_host_unittest_occlusion.cc", | 860 "trees/layer_tree_host_unittest_occlusion.cc", |
| 860 "trees/layer_tree_host_unittest_picture.cc", | 861 "trees/layer_tree_host_unittest_picture.cc", |
| 861 "trees/layer_tree_host_unittest_proxy.cc", | 862 "trees/layer_tree_host_unittest_proxy.cc", |
| 862 "trees/layer_tree_host_unittest_record_gpu_histogram.cc", | 863 "trees/layer_tree_host_unittest_record_gpu_histogram.cc", |
| 863 "trees/layer_tree_host_unittest_scroll.cc", | 864 "trees/layer_tree_host_unittest_scroll.cc", |
| 864 "trees/layer_tree_host_unittest_video.cc", | 865 "trees/layer_tree_host_unittest_video.cc", |
| 865 "trees/layer_tree_impl_unittest.cc", | 866 "trees/layer_tree_impl_unittest.cc", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 992 data = [ | 993 data = [ |
| 993 "test/data/", | 994 "test/data/", |
| 994 | 995 |
| 995 # Needed for isolate script to execute. | 996 # Needed for isolate script to execute. |
| 996 "//testing/scripts/common.py", | 997 "//testing/scripts/common.py", |
| 997 "//testing/xvfb.py", | 998 "//testing/xvfb.py", |
| 998 "//testing/scripts/run_gtest_perf_test.py", | 999 "//testing/scripts/run_gtest_perf_test.py", |
| 999 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 1000 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 1000 ] | 1001 ] |
| 1001 } | 1002 } |
| OLD | NEW |