| 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 849 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 860 "surfaces/surface_aggregator_test_helpers.h", | 860 "surfaces/surface_aggregator_test_helpers.h", |
| 861 "surfaces/surface_aggregator_unittest.cc", | 861 "surfaces/surface_aggregator_unittest.cc", |
| 862 "surfaces/surface_unittest.cc", | 862 "surfaces/surface_unittest.cc", |
| 863 "surfaces/surfaces_pixeltest.cc", | 863 "surfaces/surfaces_pixeltest.cc", |
| 864 | 864 |
| 865 # Setup. | 865 # Setup. |
| 866 "test/cc_test_suite.cc", | 866 "test/cc_test_suite.cc", |
| 867 "test/run_all_unittests.cc", | 867 "test/run_all_unittests.cc", |
| 868 ] | 868 ] |
| 869 | 869 |
| 870 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 871 |
| 870 deps = [ | 872 deps = [ |
| 871 ":cc", | 873 ":cc", |
| 872 ":test_support", | 874 ":test_support", |
| 873 "//base/test:test_support", | 875 "//base/test:test_support", |
| 874 "//cc/surfaces", | 876 "//cc/surfaces", |
| 875 "//cc/surfaces:surface_id", | 877 "//cc/surfaces:surface_id", |
| 876 "//gpu", | 878 "//gpu", |
| 877 "//gpu:test_support", | 879 "//gpu:test_support", |
| 878 "//gpu/command_buffer/client:gles2_interface", | 880 "//gpu/command_buffer/client:gles2_interface", |
| 879 "//gpu/command_buffer/common:gles2_utils", | 881 "//gpu/command_buffer/common:gles2_utils", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 898 "resources/task_graph_runner_perftest.cc", | 900 "resources/task_graph_runner_perftest.cc", |
| 899 "resources/tile_manager_perftest.cc", | 901 "resources/tile_manager_perftest.cc", |
| 900 "resources/tile_task_worker_pool_perftest.cc", | 902 "resources/tile_task_worker_pool_perftest.cc", |
| 901 "test/cc_test_suite.cc", | 903 "test/cc_test_suite.cc", |
| 902 "test/run_all_perftests.cc", | 904 "test/run_all_perftests.cc", |
| 903 "trees/layer_tree_host_common_perftest.cc", | 905 "trees/layer_tree_host_common_perftest.cc", |
| 904 "trees/layer_tree_host_perftest.cc", | 906 "trees/layer_tree_host_perftest.cc", |
| 905 "trees/occlusion_tracker_perftest.cc", | 907 "trees/occlusion_tracker_perftest.cc", |
| 906 ] | 908 ] |
| 907 | 909 |
| 910 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 911 |
| 908 deps = [ | 912 deps = [ |
| 909 ":cc", | 913 ":cc", |
| 910 ":test_support", | 914 ":test_support", |
| 911 "//base", | 915 "//base", |
| 912 "//base/test:test_support", | 916 "//base/test:test_support", |
| 913 "//gpu", | 917 "//gpu", |
| 914 "//gpu:test_support", | 918 "//gpu:test_support", |
| 915 "//gpu/command_buffer/common:gles2_utils", | 919 "//gpu/command_buffer/common:gles2_utils", |
| 916 "//media", | 920 "//media", |
| 917 "//skia", | 921 "//skia", |
| 918 "//testing/gmock", | 922 "//testing/gmock", |
| 919 "//testing/gtest", | 923 "//testing/gtest", |
| 920 "//testing/perf", | 924 "//testing/perf", |
| 921 "//ui/gfx", | 925 "//ui/gfx", |
| 922 "//ui/gfx/geometry", | 926 "//ui/gfx/geometry", |
| 923 "//ui/gl", | 927 "//ui/gl", |
| 924 ] | 928 ] |
| 925 } | 929 } |
| OLD | NEW |