| 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 934 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 945 "layers/layer_perftest.cc", | 945 "layers/layer_perftest.cc", |
| 946 "layers/picture_layer_impl_perftest.cc", | 946 "layers/picture_layer_impl_perftest.cc", |
| 947 "output/bsp_tree_perftest.cc", | 947 "output/bsp_tree_perftest.cc", |
| 948 "quads/draw_quad_perftest.cc", | 948 "quads/draw_quad_perftest.cc", |
| 949 "raster/raster_buffer_provider_perftest.cc", | 949 "raster/raster_buffer_provider_perftest.cc", |
| 950 "raster/task_graph_runner_perftest.cc", | 950 "raster/task_graph_runner_perftest.cc", |
| 951 "raster/texture_compressor_perftest.cc", | 951 "raster/texture_compressor_perftest.cc", |
| 952 "surfaces/surface_aggregator_perftest.cc", | 952 "surfaces/surface_aggregator_perftest.cc", |
| 953 "test/cc_test_suite.cc", | 953 "test/cc_test_suite.cc", |
| 954 "test/run_all_perftests.cc", | 954 "test/run_all_perftests.cc", |
| 955 "tiles/software_image_decode_cache_perftest.cc", |
| 955 "tiles/tile_manager_perftest.cc", | 956 "tiles/tile_manager_perftest.cc", |
| 956 "trees/layer_tree_host_common_perftest.cc", | 957 "trees/layer_tree_host_common_perftest.cc", |
| 957 "trees/layer_tree_host_perftest.cc", | 958 "trees/layer_tree_host_perftest.cc", |
| 958 ] | 959 ] |
| 959 | 960 |
| 960 deps = [ | 961 deps = [ |
| 961 ":cc", | 962 ":cc", |
| 962 ":test_support", | 963 ":test_support", |
| 963 "//base", | 964 "//base", |
| 964 "//base/test:test_support", | 965 "//base/test:test_support", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 988 data = [ | 989 data = [ |
| 989 "test/data/", | 990 "test/data/", |
| 990 | 991 |
| 991 # Needed for isolate script to execute. | 992 # Needed for isolate script to execute. |
| 992 "//testing/scripts/common.py", | 993 "//testing/scripts/common.py", |
| 993 "//testing/xvfb.py", | 994 "//testing/xvfb.py", |
| 994 "//testing/scripts/run_gtest_perf_test.py", | 995 "//testing/scripts/run_gtest_perf_test.py", |
| 995 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 996 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 996 ] | 997 ] |
| 997 } | 998 } |
| OLD | NEW |