| 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 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 630 "test/pixel_test_utils.cc", | 630 "test/pixel_test_utils.cc", |
| 631 "test/pixel_test_utils.h", | 631 "test/pixel_test_utils.h", |
| 632 "test/render_pass_test_utils.cc", | 632 "test/render_pass_test_utils.cc", |
| 633 "test/render_pass_test_utils.h", | 633 "test/render_pass_test_utils.h", |
| 634 "test/scheduler_test_common.cc", | 634 "test/scheduler_test_common.cc", |
| 635 "test/scheduler_test_common.h", | 635 "test/scheduler_test_common.h", |
| 636 "test/skia_common.cc", | 636 "test/skia_common.cc", |
| 637 "test/skia_common.h", | 637 "test/skia_common.h", |
| 638 "test/solid_color_content_layer_client.cc", | 638 "test/solid_color_content_layer_client.cc", |
| 639 "test/solid_color_content_layer_client.h", | 639 "test/solid_color_content_layer_client.h", |
| 640 "test/surface_aggregator_test_helpers.cc", |
| 641 "test/surface_aggregator_test_helpers.h", |
| 642 "test/surface_hittest_test_helpers.cc", |
| 643 "test/surface_hittest_test_helpers.h", |
| 640 "test/test_context_provider.cc", | 644 "test/test_context_provider.cc", |
| 641 "test/test_context_provider.h", | 645 "test/test_context_provider.h", |
| 642 "test/test_context_support.cc", | 646 "test/test_context_support.cc", |
| 643 "test/test_context_support.h", | 647 "test/test_context_support.h", |
| 644 "test/test_gles2_interface.cc", | 648 "test/test_gles2_interface.cc", |
| 645 "test/test_gles2_interface.h", | 649 "test/test_gles2_interface.h", |
| 646 "test/test_gpu_memory_buffer_manager.cc", | 650 "test/test_gpu_memory_buffer_manager.cc", |
| 647 "test/test_gpu_memory_buffer_manager.h", | 651 "test/test_gpu_memory_buffer_manager.h", |
| 648 "test/test_image_factory.cc", | 652 "test/test_image_factory.cc", |
| 649 "test/test_image_factory.h", | 653 "test/test_image_factory.h", |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 832 "trees/layer_tree_host_unittest_video.cc", | 836 "trees/layer_tree_host_unittest_video.cc", |
| 833 "trees/layer_tree_impl_unittest.cc", | 837 "trees/layer_tree_impl_unittest.cc", |
| 834 "trees/occlusion_tracker_unittest.cc", | 838 "trees/occlusion_tracker_unittest.cc", |
| 835 "trees/occlusion_unittest.cc", | 839 "trees/occlusion_unittest.cc", |
| 836 "trees/property_tree_unittest.cc", | 840 "trees/property_tree_unittest.cc", |
| 837 "trees/tree_synchronizer_unittest.cc", | 841 "trees/tree_synchronizer_unittest.cc", |
| 838 | 842 |
| 839 # Surfaces test files. | 843 # Surfaces test files. |
| 840 "surfaces/display_scheduler_unittest.cc", | 844 "surfaces/display_scheduler_unittest.cc", |
| 841 "surfaces/display_unittest.cc", | 845 "surfaces/display_unittest.cc", |
| 842 "surfaces/surface_aggregator_test_helpers.cc", | |
| 843 "surfaces/surface_aggregator_test_helpers.h", | |
| 844 "surfaces/surface_aggregator_unittest.cc", | 846 "surfaces/surface_aggregator_unittest.cc", |
| 845 "surfaces/surface_display_output_surface_unittest.cc", | 847 "surfaces/surface_display_output_surface_unittest.cc", |
| 846 "surfaces/surface_factory_unittest.cc", | 848 "surfaces/surface_factory_unittest.cc", |
| 847 "surfaces/surface_hittest_unittest.cc", | 849 "surfaces/surface_hittest_unittest.cc", |
| 848 "surfaces/surface_unittest.cc", | 850 "surfaces/surface_unittest.cc", |
| 849 "surfaces/surfaces_pixeltest.cc", | 851 "surfaces/surfaces_pixeltest.cc", |
| 850 | 852 |
| 851 # Setup. | 853 # Setup. |
| 852 "test/cc_test_suite.cc", | 854 "test/cc_test_suite.cc", |
| 853 "test/run_all_unittests.cc", | 855 "test/run_all_unittests.cc", |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 923 "//ui/gl", | 925 "//ui/gl", |
| 924 "//ui/gl:test_support", | 926 "//ui/gl:test_support", |
| 925 ] | 927 ] |
| 926 | 928 |
| 927 if (is_android) { | 929 if (is_android) { |
| 928 isolate_file = "cc_perftests.isolate" | 930 isolate_file = "cc_perftests.isolate" |
| 929 } | 931 } |
| 930 } | 932 } |
| 931 # When adding support for isolates, please have a look at run-time dependencies | 933 # When adding support for isolates, please have a look at run-time dependencies |
| 932 # in the cc_unittests_run target in cc_tests.gyp. | 934 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |