| 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 980 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 991 "//third_party/mesa:osmesa", | 991 "//third_party/mesa:osmesa", |
| 992 ] | 992 ] |
| 993 } | 993 } |
| 994 | 994 |
| 995 test("cc_perftests") { | 995 test("cc_perftests") { |
| 996 sources = [ | 996 sources = [ |
| 997 "animation/animation_host_perftest.cc", | 997 "animation/animation_host_perftest.cc", |
| 998 "ipc/cc_serialization_perftest.cc", | 998 "ipc/cc_serialization_perftest.cc", |
| 999 "layers/layer_perftest.cc", | 999 "layers/layer_perftest.cc", |
| 1000 "layers/picture_layer_impl_perftest.cc", | 1000 "layers/picture_layer_impl_perftest.cc", |
| 1001 "output/bsp_tree_perftest.cc", |
| 1001 "quads/draw_quad_perftest.cc", | 1002 "quads/draw_quad_perftest.cc", |
| 1002 "raster/raster_buffer_provider_perftest.cc", | 1003 "raster/raster_buffer_provider_perftest.cc", |
| 1003 "raster/task_graph_runner_perftest.cc", | 1004 "raster/task_graph_runner_perftest.cc", |
| 1004 "raster/texture_compressor_perftest.cc", | 1005 "raster/texture_compressor_perftest.cc", |
| 1005 "surfaces/surface_aggregator_perftest.cc", | 1006 "surfaces/surface_aggregator_perftest.cc", |
| 1006 "test/cc_test_suite.cc", | 1007 "test/cc_test_suite.cc", |
| 1007 "test/run_all_perftests.cc", | 1008 "test/run_all_perftests.cc", |
| 1008 "tiles/tile_manager_perftest.cc", | 1009 "tiles/tile_manager_perftest.cc", |
| 1009 "trees/layer_tree_host_common_perftest.cc", | 1010 "trees/layer_tree_host_common_perftest.cc", |
| 1010 "trees/layer_tree_host_perftest.cc", | 1011 "trees/layer_tree_host_perftest.cc", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 1031 "//testing/perf", | 1032 "//testing/perf", |
| 1032 "//ui/gfx", | 1033 "//ui/gfx", |
| 1033 "//ui/gfx/geometry", | 1034 "//ui/gfx/geometry", |
| 1034 "//ui/gl", | 1035 "//ui/gl", |
| 1035 "//ui/gl:test_support", | 1036 "//ui/gl:test_support", |
| 1036 ] | 1037 ] |
| 1037 | 1038 |
| 1038 # This target should not require the Chrome executable to run. | 1039 # This target should not require the Chrome executable to run. |
| 1039 assert_no_deps = [ "//chrome" ] | 1040 assert_no_deps = [ "//chrome" ] |
| 1040 } | 1041 } |
| OLD | NEW |