Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Side by Side Diff: cc/BUILD.gn

Issue 1422783002: cc: Move surfaces hittesting test helpers out to a separate file (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved to cc/tests Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | cc/cc_tests.gyp » ('j') | cc/test/surface_hittest_test_helpers.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
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.
OLDNEW
« no previous file with comments | « no previous file | cc/cc_tests.gyp » ('j') | cc/test/surface_hittest_test_helpers.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698