| 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 825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 836 "tiles/gpu_image_decode_cache_unittest.cc", | 836 "tiles/gpu_image_decode_cache_unittest.cc", |
| 837 "tiles/image_controller_unittest.cc", | 837 "tiles/image_controller_unittest.cc", |
| 838 "tiles/mipmap_util_unittest.cc", | 838 "tiles/mipmap_util_unittest.cc", |
| 839 "tiles/picture_layer_tiling_set_unittest.cc", | 839 "tiles/picture_layer_tiling_set_unittest.cc", |
| 840 "tiles/picture_layer_tiling_unittest.cc", | 840 "tiles/picture_layer_tiling_unittest.cc", |
| 841 "tiles/software_image_decode_cache_unittest.cc", | 841 "tiles/software_image_decode_cache_unittest.cc", |
| 842 "tiles/tile_manager_unittest.cc", | 842 "tiles/tile_manager_unittest.cc", |
| 843 "tiles/tile_priority_unittest.cc", | 843 "tiles/tile_priority_unittest.cc", |
| 844 "trees/blocking_task_runner_unittest.cc", | 844 "trees/blocking_task_runner_unittest.cc", |
| 845 "trees/damage_tracker_unittest.cc", | 845 "trees/damage_tracker_unittest.cc", |
| 846 "trees/draw_property_utils_unittest.cc", |
| 846 "trees/layer_tree_host_common_unittest.cc", | 847 "trees/layer_tree_host_common_unittest.cc", |
| 847 "trees/layer_tree_host_impl_unittest.cc", | 848 "trees/layer_tree_host_impl_unittest.cc", |
| 848 "trees/layer_tree_host_pixeltest_blending.cc", | 849 "trees/layer_tree_host_pixeltest_blending.cc", |
| 849 "trees/layer_tree_host_pixeltest_filters.cc", | 850 "trees/layer_tree_host_pixeltest_filters.cc", |
| 850 "trees/layer_tree_host_pixeltest_masks.cc", | 851 "trees/layer_tree_host_pixeltest_masks.cc", |
| 851 "trees/layer_tree_host_pixeltest_readback.cc", | 852 "trees/layer_tree_host_pixeltest_readback.cc", |
| 852 "trees/layer_tree_host_pixeltest_scrollbars.cc", | 853 "trees/layer_tree_host_pixeltest_scrollbars.cc", |
| 853 "trees/layer_tree_host_pixeltest_synchronous.cc", | 854 "trees/layer_tree_host_pixeltest_synchronous.cc", |
| 854 "trees/layer_tree_host_pixeltest_tiles.cc", | 855 "trees/layer_tree_host_pixeltest_tiles.cc", |
| 855 "trees/layer_tree_host_unittest.cc", | 856 "trees/layer_tree_host_unittest.cc", |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 993 data = [ | 994 data = [ |
| 994 "test/data/", | 995 "test/data/", |
| 995 | 996 |
| 996 # Needed for isolate script to execute. | 997 # Needed for isolate script to execute. |
| 997 "//testing/scripts/common.py", | 998 "//testing/scripts/common.py", |
| 998 "//testing/xvfb.py", | 999 "//testing/xvfb.py", |
| 999 "//testing/scripts/run_gtest_perf_test.py", | 1000 "//testing/scripts/run_gtest_perf_test.py", |
| 1000 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 1001 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 1001 ] | 1002 ] |
| 1002 } | 1003 } |
| OLD | NEW |