| 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 969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 980 ] | 980 ] |
| 981 | 981 |
| 982 data_deps = [ | 982 data_deps = [ |
| 983 "//third_party/mesa:osmesa", | 983 "//third_party/mesa:osmesa", |
| 984 ] | 984 ] |
| 985 } | 985 } |
| 986 | 986 |
| 987 cc_test("cc_perftests") { | 987 cc_test("cc_perftests") { |
| 988 sources = [ | 988 sources = [ |
| 989 "animation/animation_host_perftest.cc", | 989 "animation/animation_host_perftest.cc", |
| 990 "base/rtree_perftest.cc", |
| 990 "ipc/cc_serialization_perftest.cc", | 991 "ipc/cc_serialization_perftest.cc", |
| 991 "layers/layer_perftest.cc", | 992 "layers/layer_perftest.cc", |
| 992 "layers/picture_layer_impl_perftest.cc", | 993 "layers/picture_layer_impl_perftest.cc", |
| 993 "output/bsp_tree_perftest.cc", | 994 "output/bsp_tree_perftest.cc", |
| 994 "quads/draw_quad_perftest.cc", | 995 "quads/draw_quad_perftest.cc", |
| 995 "raster/raster_buffer_provider_perftest.cc", | 996 "raster/raster_buffer_provider_perftest.cc", |
| 996 "raster/task_graph_runner_perftest.cc", | 997 "raster/task_graph_runner_perftest.cc", |
| 997 "raster/texture_compressor_perftest.cc", | 998 "raster/texture_compressor_perftest.cc", |
| 998 "surfaces/surface_aggregator_perftest.cc", | 999 "surfaces/surface_aggregator_perftest.cc", |
| 999 "test/cc_test_suite.cc", | 1000 "test/cc_test_suite.cc", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1034 data = [ | 1035 data = [ |
| 1035 "test/data/", | 1036 "test/data/", |
| 1036 | 1037 |
| 1037 # Needed for isolate script to execute. | 1038 # Needed for isolate script to execute. |
| 1038 "//testing/scripts/common.py", | 1039 "//testing/scripts/common.py", |
| 1039 "//testing/xvfb.py", | 1040 "//testing/xvfb.py", |
| 1040 "//testing/scripts/run_gtest_perf_test.py", | 1041 "//testing/scripts/run_gtest_perf_test.py", |
| 1041 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 1042 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 1042 ] | 1043 ] |
| 1043 } | 1044 } |
| OLD | NEW |