| 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 977 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 988 ] | 988 ] |
| 989 | 989 |
| 990 data_deps = [ | 990 data_deps = [ |
| 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_param_traits_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 "quads/draw_quad_perftest.cc", | 1001 "quads/draw_quad_perftest.cc", |
| 1002 "raster/raster_buffer_provider_perftest.cc", | 1002 "raster/raster_buffer_provider_perftest.cc", |
| 1003 "raster/task_graph_runner_perftest.cc", | 1003 "raster/task_graph_runner_perftest.cc", |
| 1004 "raster/texture_compressor_perftest.cc", | 1004 "raster/texture_compressor_perftest.cc", |
| 1005 "surfaces/surface_aggregator_perftest.cc", | 1005 "surfaces/surface_aggregator_perftest.cc", |
| 1006 "test/cc_test_suite.cc", | 1006 "test/cc_test_suite.cc", |
| 1007 "test/run_all_perftests.cc", | 1007 "test/run_all_perftests.cc", |
| 1008 "tiles/tile_manager_perftest.cc", | 1008 "tiles/tile_manager_perftest.cc", |
| 1009 "trees/layer_tree_host_common_perftest.cc", | 1009 "trees/layer_tree_host_common_perftest.cc", |
| 1010 "trees/layer_tree_host_perftest.cc", | 1010 "trees/layer_tree_host_perftest.cc", |
| 1011 ] | 1011 ] |
| 1012 | 1012 |
| 1013 deps = [ | 1013 deps = [ |
| 1014 ":cc", | 1014 ":cc", |
| 1015 ":test_support", | 1015 ":test_support", |
| 1016 "//base", | 1016 "//base", |
| 1017 "//base/test:test_support", | 1017 "//base/test:test_support", |
| 1018 "//cc/ipc", | 1018 "//cc/ipc", |
| 1019 "//cc/ipc:interfaces", |
| 1019 "//cc/surfaces", | 1020 "//cc/surfaces", |
| 1020 "//cc/surfaces:surface_id", | 1021 "//cc/surfaces:surface_id", |
| 1021 "//gpu", | 1022 "//gpu", |
| 1022 "//gpu:test_support", | 1023 "//gpu:test_support", |
| 1023 "//gpu/command_buffer/common:gles2_utils", | 1024 "//gpu/command_buffer/common:gles2_utils", |
| 1024 "//media", | 1025 "//media", |
| 1026 "//mojo/edk/system", |
| 1027 "//mojo/public/cpp/bindings", |
| 1025 "//skia", | 1028 "//skia", |
| 1026 "//testing/gmock", | 1029 "//testing/gmock", |
| 1027 "//testing/gtest", | 1030 "//testing/gtest", |
| 1028 "//testing/perf", | 1031 "//testing/perf", |
| 1029 "//ui/gfx", | 1032 "//ui/gfx", |
| 1030 "//ui/gfx/geometry", | 1033 "//ui/gfx/geometry", |
| 1031 "//ui/gl", | 1034 "//ui/gl", |
| 1032 "//ui/gl:test_support", | 1035 "//ui/gl:test_support", |
| 1033 ] | 1036 ] |
| 1034 | 1037 |
| 1035 # This target should not require the Chrome executable to run. | 1038 # This target should not require the Chrome executable to run. |
| 1036 assert_no_deps = [ "//chrome" ] | 1039 assert_no_deps = [ "//chrome" ] |
| 1037 } | 1040 } |
| 1038 # When adding support for isolates, please have a look at run-time dependencies | 1041 # When adding support for isolates, please have a look at run-time dependencies |
| 1039 # in the cc_unittests_run target in cc_tests.gyp. | 1042 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |