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("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 component("cc") { | 8 component("cc") { |
9 sources = [ | 9 sources = [ |
10 "animation/animation.cc", | 10 "animation/animation.cc", |
(...skipping 957 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
968 "animation/animation_host_perftest.cc", | 968 "animation/animation_host_perftest.cc", |
969 "layers/layer_perftest.cc", | 969 "layers/layer_perftest.cc", |
970 "layers/picture_layer_impl_perftest.cc", | 970 "layers/picture_layer_impl_perftest.cc", |
971 "quads/draw_quad_perftest.cc", | 971 "quads/draw_quad_perftest.cc", |
972 "raster/raster_buffer_provider_perftest.cc", | 972 "raster/raster_buffer_provider_perftest.cc", |
973 "raster/task_graph_runner_perftest.cc", | 973 "raster/task_graph_runner_perftest.cc", |
974 "raster/texture_compressor_perftest.cc", | 974 "raster/texture_compressor_perftest.cc", |
975 "surfaces/surface_aggregator_perftest.cc", | 975 "surfaces/surface_aggregator_perftest.cc", |
976 "test/cc_test_suite.cc", | 976 "test/cc_test_suite.cc", |
977 "test/run_all_perftests.cc", | 977 "test/run_all_perftests.cc", |
978 "tiles/picture_layer_tiling_perftest.cc", | |
979 "tiles/tile_manager_perftest.cc", | 978 "tiles/tile_manager_perftest.cc", |
980 "trees/layer_tree_host_common_perftest.cc", | 979 "trees/layer_tree_host_common_perftest.cc", |
981 "trees/layer_tree_host_perftest.cc", | 980 "trees/layer_tree_host_perftest.cc", |
982 "trees/occlusion_tracker_perftest.cc", | 981 "trees/occlusion_tracker_perftest.cc", |
983 ] | 982 ] |
984 | 983 |
985 deps = [ | 984 deps = [ |
986 ":cc", | 985 ":cc", |
987 ":test_support", | 986 ":test_support", |
988 "//base", | 987 "//base", |
989 "//base/test:test_support", | 988 "//base/test:test_support", |
990 "//cc/surfaces", | 989 "//cc/surfaces", |
991 "//cc/surfaces:surface_id", | 990 "//cc/surfaces:surface_id", |
992 "//gpu", | 991 "//gpu", |
993 "//gpu:test_support", | 992 "//gpu:test_support", |
994 "//gpu/command_buffer/common:gles2_utils", | 993 "//gpu/command_buffer/common:gles2_utils", |
995 "//media", | 994 "//media", |
996 "//skia", | 995 "//skia", |
997 "//testing/gmock", | 996 "//testing/gmock", |
998 "//testing/gtest", | 997 "//testing/gtest", |
999 "//testing/perf", | 998 "//testing/perf", |
1000 "//ui/gfx", | 999 "//ui/gfx", |
1001 "//ui/gfx/geometry", | 1000 "//ui/gfx/geometry", |
1002 "//ui/gl", | 1001 "//ui/gl", |
1003 "//ui/gl:test_support", | 1002 "//ui/gl:test_support", |
1004 ] | 1003 ] |
1005 } | 1004 } |
1006 # When adding support for isolates, please have a look at run-time dependencies | 1005 # When adding support for isolates, please have a look at run-time dependencies |
1007 # in the cc_unittests_run target in cc_tests.gyp. | 1006 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |