| 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 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 "resources/single_release_callback.cc", | 418 "resources/single_release_callback.cc", |
| 419 "resources/single_release_callback.h", | 419 "resources/single_release_callback.h", |
| 420 "resources/single_release_callback_impl.cc", | 420 "resources/single_release_callback_impl.cc", |
| 421 "resources/single_release_callback_impl.h", | 421 "resources/single_release_callback_impl.h", |
| 422 "resources/skpicture_content_layer_updater.cc", | 422 "resources/skpicture_content_layer_updater.cc", |
| 423 "resources/skpicture_content_layer_updater.h", | 423 "resources/skpicture_content_layer_updater.h", |
| 424 "resources/software_rasterizer.cc", | 424 "resources/software_rasterizer.cc", |
| 425 "resources/software_rasterizer.h", | 425 "resources/software_rasterizer.h", |
| 426 "resources/task_graph_runner.cc", | 426 "resources/task_graph_runner.cc", |
| 427 "resources/task_graph_runner.h", | 427 "resources/task_graph_runner.h", |
| 428 "resources/texture_compress/texture_compressor.cc", |
| 429 "resources/texture_compress/texture_compressor.h", |
| 430 "resources/texture_compress/texture_compressor_etc1.cc", |
| 431 "resources/texture_compress/texture_compressor_etc1.h", |
| 428 "resources/texture_mailbox.cc", | 432 "resources/texture_mailbox.cc", |
| 429 "resources/texture_mailbox.h", | 433 "resources/texture_mailbox.h", |
| 430 "resources/texture_mailbox_deleter.cc", | 434 "resources/texture_mailbox_deleter.cc", |
| 431 "resources/texture_mailbox_deleter.h", | 435 "resources/texture_mailbox_deleter.h", |
| 432 "resources/texture_uploader.cc", | 436 "resources/texture_uploader.cc", |
| 433 "resources/texture_uploader.h", | 437 "resources/texture_uploader.h", |
| 434 "resources/tile.cc", | 438 "resources/tile.cc", |
| 435 "resources/tile.h", | 439 "resources/tile.h", |
| 436 "resources/tile_draw_info.cc", | 440 "resources/tile_draw_info.cc", |
| 437 "resources/tile_draw_info.h", | 441 "resources/tile_draw_info.h", |
| (...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 869 ] | 873 ] |
| 870 } | 874 } |
| 871 | 875 |
| 872 test("cc_perftests") { | 876 test("cc_perftests") { |
| 873 sources = [ | 877 sources = [ |
| 874 "layers/layer_perftest.cc", | 878 "layers/layer_perftest.cc", |
| 875 "layers/picture_layer_impl_perftest.cc", | 879 "layers/picture_layer_impl_perftest.cc", |
| 876 "resources/picture_layer_tiling_perftest.cc", | 880 "resources/picture_layer_tiling_perftest.cc", |
| 877 "resources/picture_pile_impl_perftest.cc", | 881 "resources/picture_pile_impl_perftest.cc", |
| 878 "resources/task_graph_runner_perftest.cc", | 882 "resources/task_graph_runner_perftest.cc", |
| 883 "resources/texture_compress/texture_compressor_perftest.cc", |
| 879 "resources/tile_manager_perftest.cc", | 884 "resources/tile_manager_perftest.cc", |
| 880 "resources/tile_task_worker_pool_perftest.cc", | 885 "resources/tile_task_worker_pool_perftest.cc", |
| 881 "test/cc_test_suite.cc", | 886 "test/cc_test_suite.cc", |
| 882 "test/run_all_perftests.cc", | 887 "test/run_all_perftests.cc", |
| 883 "trees/layer_tree_host_common_perftest.cc", | 888 "trees/layer_tree_host_common_perftest.cc", |
| 884 "trees/layer_tree_host_perftest.cc", | 889 "trees/layer_tree_host_perftest.cc", |
| 885 "trees/occlusion_tracker_perftest.cc", | 890 "trees/occlusion_tracker_perftest.cc", |
| 886 ] | 891 ] |
| 887 | 892 |
| 888 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 893 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| (...skipping 11 matching lines...) Expand all Loading... |
| 900 "//testing/gmock", | 905 "//testing/gmock", |
| 901 "//testing/gtest", | 906 "//testing/gtest", |
| 902 "//testing/perf", | 907 "//testing/perf", |
| 903 "//ui/gfx", | 908 "//ui/gfx", |
| 904 "//ui/gfx/geometry", | 909 "//ui/gfx/geometry", |
| 905 "//ui/gl", | 910 "//ui/gl", |
| 906 ] | 911 ] |
| 907 } | 912 } |
| 908 # When adding support for isolates, please have a look at run-time dependencies | 913 # When adding support for isolates, please have a look at run-time dependencies |
| 909 # in the cc_unittests_run target in cc_tests.gyp. | 914 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |