| 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 976 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 987 "quads/draw_quad_perftest.cc", | 987 "quads/draw_quad_perftest.cc", |
| 988 "raster/raster_buffer_provider_perftest.cc", | 988 "raster/raster_buffer_provider_perftest.cc", |
| 989 "raster/task_graph_runner_perftest.cc", | 989 "raster/task_graph_runner_perftest.cc", |
| 990 "raster/texture_compressor_perftest.cc", | 990 "raster/texture_compressor_perftest.cc", |
| 991 "surfaces/surface_aggregator_perftest.cc", | 991 "surfaces/surface_aggregator_perftest.cc", |
| 992 "test/cc_test_suite.cc", | 992 "test/cc_test_suite.cc", |
| 993 "test/run_all_perftests.cc", | 993 "test/run_all_perftests.cc", |
| 994 "tiles/tile_manager_perftest.cc", | 994 "tiles/tile_manager_perftest.cc", |
| 995 "trees/layer_tree_host_common_perftest.cc", | 995 "trees/layer_tree_host_common_perftest.cc", |
| 996 "trees/layer_tree_host_perftest.cc", | 996 "trees/layer_tree_host_perftest.cc", |
| 997 "trees/occlusion_tracker_perftest.cc", | |
| 998 ] | 997 ] |
| 999 | 998 |
| 1000 deps = [ | 999 deps = [ |
| 1001 ":cc", | 1000 ":cc", |
| 1002 ":test_support", | 1001 ":test_support", |
| 1003 "//base", | 1002 "//base", |
| 1004 "//base/test:test_support", | 1003 "//base/test:test_support", |
| 1005 "//cc/ipc", | 1004 "//cc/ipc", |
| 1006 "//cc/surfaces", | 1005 "//cc/surfaces", |
| 1007 "//cc/surfaces:surface_id", | 1006 "//cc/surfaces:surface_id", |
| 1008 "//gpu", | 1007 "//gpu", |
| 1009 "//gpu:test_support", | 1008 "//gpu:test_support", |
| 1010 "//gpu/command_buffer/common:gles2_utils", | 1009 "//gpu/command_buffer/common:gles2_utils", |
| 1011 "//media", | 1010 "//media", |
| 1012 "//skia", | 1011 "//skia", |
| 1013 "//testing/gmock", | 1012 "//testing/gmock", |
| 1014 "//testing/gtest", | 1013 "//testing/gtest", |
| 1015 "//testing/perf", | 1014 "//testing/perf", |
| 1016 "//ui/gfx", | 1015 "//ui/gfx", |
| 1017 "//ui/gfx/geometry", | 1016 "//ui/gfx/geometry", |
| 1018 "//ui/gl", | 1017 "//ui/gl", |
| 1019 "//ui/gl:test_support", | 1018 "//ui/gl:test_support", |
| 1020 ] | 1019 ] |
| 1021 | 1020 |
| 1022 # This target should not require the Chrome executable to run. | 1021 # This target should not require the Chrome executable to run. |
| 1023 assert_no_deps = [ "//chrome" ] | 1022 assert_no_deps = [ "//chrome" ] |
| 1024 } | 1023 } |
| 1025 # When adding support for isolates, please have a look at run-time dependencies | 1024 # When adding support for isolates, please have a look at run-time dependencies |
| 1026 # in the cc_unittests_run target in cc_tests.gyp. | 1025 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |