| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 component("cc") { | 7 component("cc") { |
| 8 sources = [ | 8 sources = [ |
| 9 "animation/animation.cc", | 9 "animation/animation.cc", |
| 10 "animation/animation.h", | 10 "animation/animation.h", |
| (...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 882 test("cc_perftests") { | 882 test("cc_perftests") { |
| 883 sources = [ | 883 sources = [ |
| 884 "layers/layer_perftest.cc", | 884 "layers/layer_perftest.cc", |
| 885 "layers/picture_layer_impl_perftest.cc", | 885 "layers/picture_layer_impl_perftest.cc", |
| 886 "resources/picture_layer_tiling_perftest.cc", | 886 "resources/picture_layer_tiling_perftest.cc", |
| 887 "resources/picture_pile_impl_perftest.cc", | 887 "resources/picture_pile_impl_perftest.cc", |
| 888 "resources/task_graph_runner_perftest.cc", | 888 "resources/task_graph_runner_perftest.cc", |
| 889 "resources/texture_compressor_perftest.cc", | 889 "resources/texture_compressor_perftest.cc", |
| 890 "resources/tile_manager_perftest.cc", | 890 "resources/tile_manager_perftest.cc", |
| 891 "resources/tile_task_worker_pool_perftest.cc", | 891 "resources/tile_task_worker_pool_perftest.cc", |
| 892 "surfaces/surface_aggregator_perftest.cc", |
| 892 "test/cc_test_suite.cc", | 893 "test/cc_test_suite.cc", |
| 893 "test/run_all_perftests.cc", | 894 "test/run_all_perftests.cc", |
| 894 "trees/layer_tree_host_common_perftest.cc", | 895 "trees/layer_tree_host_common_perftest.cc", |
| 895 "trees/layer_tree_host_perftest.cc", | 896 "trees/layer_tree_host_perftest.cc", |
| 896 "trees/occlusion_tracker_perftest.cc", | 897 "trees/occlusion_tracker_perftest.cc", |
| 897 ] | 898 ] |
| 898 | 899 |
| 899 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 900 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 900 | 901 |
| 901 deps = [ | 902 deps = [ |
| 902 ":cc", | 903 ":cc", |
| 903 ":test_support", | 904 ":test_support", |
| 904 "//base", | 905 "//base", |
| 905 "//base/test:test_support", | 906 "//base/test:test_support", |
| 907 "//cc/surfaces", |
| 908 "//cc/surfaces:surface_id", |
| 906 "//gpu", | 909 "//gpu", |
| 907 "//gpu:test_support", | 910 "//gpu:test_support", |
| 908 "//gpu/command_buffer/common:gles2_utils", | 911 "//gpu/command_buffer/common:gles2_utils", |
| 909 "//media", | 912 "//media", |
| 910 "//skia", | 913 "//skia", |
| 911 "//testing/gmock", | 914 "//testing/gmock", |
| 912 "//testing/gtest", | 915 "//testing/gtest", |
| 913 "//testing/perf", | 916 "//testing/perf", |
| 914 "//ui/gfx", | 917 "//ui/gfx", |
| 915 "//ui/gfx/geometry", | 918 "//ui/gfx/geometry", |
| 916 "//ui/gl", | 919 "//ui/gl", |
| 917 ] | 920 ] |
| 918 } | 921 } |
| 919 # When adding support for isolates, please have a look at run-time dependencies | 922 # When adding support for isolates, please have a look at run-time dependencies |
| 920 # in the cc_unittests_run target in cc_tests.gyp. | 923 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |