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

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: Fix GN DEPS I hope 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') | no next file with comments »
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 621 matching lines...) Expand 10 before | Expand all | Expand 10 after
632 "test/pixel_test_utils.cc", 632 "test/pixel_test_utils.cc",
633 "test/pixel_test_utils.h", 633 "test/pixel_test_utils.h",
634 "test/render_pass_test_utils.cc", 634 "test/render_pass_test_utils.cc",
635 "test/render_pass_test_utils.h", 635 "test/render_pass_test_utils.h",
636 "test/scheduler_test_common.cc", 636 "test/scheduler_test_common.cc",
637 "test/scheduler_test_common.h", 637 "test/scheduler_test_common.h",
638 "test/skia_common.cc", 638 "test/skia_common.cc",
639 "test/skia_common.h", 639 "test/skia_common.h",
640 "test/solid_color_content_layer_client.cc", 640 "test/solid_color_content_layer_client.cc",
641 "test/solid_color_content_layer_client.h", 641 "test/solid_color_content_layer_client.h",
642 "test/surface_aggregator_test_helpers.cc",
643 "test/surface_aggregator_test_helpers.h",
644 "test/surface_hittest_test_helpers.cc",
645 "test/surface_hittest_test_helpers.h",
642 "test/test_context_provider.cc", 646 "test/test_context_provider.cc",
643 "test/test_context_provider.h", 647 "test/test_context_provider.h",
644 "test/test_context_support.cc", 648 "test/test_context_support.cc",
645 "test/test_context_support.h", 649 "test/test_context_support.h",
646 "test/test_gles2_interface.cc", 650 "test/test_gles2_interface.cc",
647 "test/test_gles2_interface.h", 651 "test/test_gles2_interface.h",
648 "test/test_gpu_memory_buffer_manager.cc", 652 "test/test_gpu_memory_buffer_manager.cc",
649 "test/test_gpu_memory_buffer_manager.h", 653 "test/test_gpu_memory_buffer_manager.h",
650 "test/test_image_factory.cc", 654 "test/test_image_factory.cc",
651 "test/test_image_factory.h", 655 "test/test_image_factory.h",
(...skipping 15 matching lines...) Expand all
667 configs += [ "//build/config:precompiled_headers" ] 671 configs += [ "//build/config:precompiled_headers" ]
668 672
669 public_deps = [ 673 public_deps = [
670 ":cc", 674 ":cc",
671 "//gpu:test_support", 675 "//gpu:test_support",
672 ] 676 ]
673 deps = [ 677 deps = [
674 "//base", 678 "//base",
675 "//base/test:test_support", 679 "//base/test:test_support",
676 "//base/third_party/dynamic_annotations", 680 "//base/third_party/dynamic_annotations",
681 "//cc/surfaces",
682 "//cc/surfaces:surface_id",
677 "//gpu/command_buffer/client:gles2_c_lib", 683 "//gpu/command_buffer/client:gles2_c_lib",
678 "//gpu/command_buffer/client:gles2_implementation", 684 "//gpu/command_buffer/client:gles2_implementation",
679 "//gpu/command_buffer/client:gl_in_process_context", 685 "//gpu/command_buffer/client:gl_in_process_context",
680 "//gpu/command_buffer/common:gles2_utils", 686 "//gpu/command_buffer/common:gles2_utils",
681 "//gpu/skia_bindings", 687 "//gpu/skia_bindings",
682 "//media", 688 "//media",
683 "//skia", 689 "//skia",
684 "//testing/gmock", 690 "//testing/gmock",
685 "//testing/gtest", 691 "//testing/gtest",
686 "//ui/gfx", 692 "//ui/gfx",
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
835 "trees/layer_tree_host_unittest_video.cc", 841 "trees/layer_tree_host_unittest_video.cc",
836 "trees/layer_tree_impl_unittest.cc", 842 "trees/layer_tree_impl_unittest.cc",
837 "trees/occlusion_tracker_unittest.cc", 843 "trees/occlusion_tracker_unittest.cc",
838 "trees/occlusion_unittest.cc", 844 "trees/occlusion_unittest.cc",
839 "trees/property_tree_unittest.cc", 845 "trees/property_tree_unittest.cc",
840 "trees/tree_synchronizer_unittest.cc", 846 "trees/tree_synchronizer_unittest.cc",
841 847
842 # Surfaces test files. 848 # Surfaces test files.
843 "surfaces/display_scheduler_unittest.cc", 849 "surfaces/display_scheduler_unittest.cc",
844 "surfaces/display_unittest.cc", 850 "surfaces/display_unittest.cc",
845 "surfaces/surface_aggregator_test_helpers.cc",
846 "surfaces/surface_aggregator_test_helpers.h",
847 "surfaces/surface_aggregator_unittest.cc", 851 "surfaces/surface_aggregator_unittest.cc",
848 "surfaces/surface_display_output_surface_unittest.cc", 852 "surfaces/surface_display_output_surface_unittest.cc",
849 "surfaces/surface_factory_unittest.cc", 853 "surfaces/surface_factory_unittest.cc",
850 "surfaces/surface_hittest_unittest.cc", 854 "surfaces/surface_hittest_unittest.cc",
851 "surfaces/surface_unittest.cc", 855 "surfaces/surface_unittest.cc",
852 "surfaces/surfaces_pixeltest.cc", 856 "surfaces/surfaces_pixeltest.cc",
853 857
854 # Setup. 858 # Setup.
855 "test/cc_test_suite.cc", 859 "test/cc_test_suite.cc",
856 "test/run_all_unittests.cc", 860 "test/run_all_unittests.cc",
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
926 "//ui/gl", 930 "//ui/gl",
927 "//ui/gl:test_support", 931 "//ui/gl:test_support",
928 ] 932 ]
929 933
930 if (is_android) { 934 if (is_android) {
931 isolate_file = "cc_perftests.isolate" 935 isolate_file = "cc_perftests.isolate"
932 } 936 }
933 } 937 }
934 # When adding support for isolates, please have a look at run-time dependencies 938 # When adding support for isolates, please have a look at run-time dependencies
935 # in the cc_unittests_run target in cc_tests.gyp. 939 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW
« no previous file with comments | « no previous file | cc/cc_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698