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

Side by Side Diff: cc/BUILD.gn

Issue 2802023002: Remove SurfaceFactory And SurfaceFactoryClient (Closed)
Patch Set: Use range in for loop Created 3 years, 7 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/surfaces/BUILD.gn » ('j') | cc/surfaces/compositor_frame_sink_support.h » ('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("//cc/cc.gni") 5 import("//cc/cc.gni")
6 import("//gpu/vulkan/features.gni") 6 import("//gpu/vulkan/features.gni")
7 7
8 cc_component("cc") { 8 cc_component("cc") {
9 sources = [ 9 sources = [
10 "benchmarks/benchmark_instrumentation.cc", 10 "benchmarks/benchmark_instrumentation.cc",
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 "test/layer_test_common.cc", 585 "test/layer_test_common.cc",
586 "test/layer_test_common.h", 586 "test/layer_test_common.h",
587 "test/layer_tree_json_parser.cc", 587 "test/layer_tree_json_parser.cc",
588 "test/layer_tree_json_parser.h", 588 "test/layer_tree_json_parser.h",
589 "test/layer_tree_pixel_resource_test.cc", 589 "test/layer_tree_pixel_resource_test.cc",
590 "test/layer_tree_pixel_resource_test.h", 590 "test/layer_tree_pixel_resource_test.h",
591 "test/layer_tree_pixel_test.cc", 591 "test/layer_tree_pixel_test.cc",
592 "test/layer_tree_pixel_test.h", 592 "test/layer_tree_pixel_test.h",
593 "test/layer_tree_test.cc", 593 "test/layer_tree_test.cc",
594 "test/layer_tree_test.h", 594 "test/layer_tree_test.h",
595 "test/mock_compositor_frame_sink_support_client.cc",
596 "test/mock_compositor_frame_sink_support_client.h",
595 "test/mock_helper.h", 597 "test/mock_helper.h",
596 "test/mock_occlusion_tracker.h", 598 "test/mock_occlusion_tracker.h",
597 "test/ordered_simple_task_runner.cc", 599 "test/ordered_simple_task_runner.cc",
598 "test/ordered_simple_task_runner.h", 600 "test/ordered_simple_task_runner.h",
599 "test/ordered_texture_map.cc", 601 "test/ordered_texture_map.cc",
600 "test/ordered_texture_map.h", 602 "test/ordered_texture_map.h",
601 "test/paths.cc", 603 "test/paths.cc",
602 "test/paths.h", 604 "test/paths.h",
603 "test/pixel_comparator.cc", 605 "test/pixel_comparator.cc",
604 "test/pixel_comparator.h", 606 "test/pixel_comparator.h",
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
677 "//cc/surfaces", 679 "//cc/surfaces",
678 "//cc/surfaces:surface_id", 680 "//cc/surfaces:surface_id",
679 "//gpu/command_buffer/client:gles2_c_lib", 681 "//gpu/command_buffer/client:gles2_c_lib",
680 "//gpu/command_buffer/client:gles2_implementation", 682 "//gpu/command_buffer/client:gles2_implementation",
681 "//gpu/command_buffer/common:gles2_utils", 683 "//gpu/command_buffer/common:gles2_utils",
682 "//gpu/ipc:gl_in_process_context", 684 "//gpu/ipc:gl_in_process_context",
683 "//gpu/skia_bindings", 685 "//gpu/skia_bindings",
684 "//media", 686 "//media",
685 "//skia", 687 "//skia",
686 "//testing/gmock", 688 "//testing/gmock",
689 "//testing/gmock",
danakj 2017/04/28 17:44:23 These are already both here?
Alex Z. 2017/05/01 14:48:34 Done.
690 "//testing/gtest",
687 "//testing/gtest", 691 "//testing/gtest",
688 "//ui/gfx", 692 "//ui/gfx",
689 "//ui/gfx:test_support", 693 "//ui/gfx:test_support",
690 "//ui/gfx/geometry", 694 "//ui/gfx/geometry",
691 "//ui/gl", 695 "//ui/gl",
692 "//ui/gl:test_support", 696 "//ui/gl:test_support",
693 "//ui/latency", 697 "//ui/latency",
694 ] 698 ]
695 if (!is_android) { 699 if (!is_android) {
696 data_deps = [ 700 data_deps = [
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
847 "animation/scroll_offset_animation_curve_unittest.cc", 851 "animation/scroll_offset_animation_curve_unittest.cc",
848 "animation/transform_operations_unittest.cc", 852 "animation/transform_operations_unittest.cc",
849 853
850 # Surfaces test files. 854 # Surfaces test files.
851 "surfaces/compositor_frame_sink_support_unittest.cc", 855 "surfaces/compositor_frame_sink_support_unittest.cc",
852 "surfaces/direct_compositor_frame_sink_unittest.cc", 856 "surfaces/direct_compositor_frame_sink_unittest.cc",
853 "surfaces/display_scheduler_unittest.cc", 857 "surfaces/display_scheduler_unittest.cc",
854 "surfaces/display_unittest.cc", 858 "surfaces/display_unittest.cc",
855 "surfaces/referenced_surface_tracker_unittest.cc", 859 "surfaces/referenced_surface_tracker_unittest.cc",
856 "surfaces/surface_aggregator_unittest.cc", 860 "surfaces/surface_aggregator_unittest.cc",
857 "surfaces/surface_factory_unittest.cc",
858 "surfaces/surface_hittest_unittest.cc", 861 "surfaces/surface_hittest_unittest.cc",
859 "surfaces/surface_manager_ref_unittest.cc", 862 "surfaces/surface_manager_ref_unittest.cc",
860 "surfaces/surface_manager_unittest.cc", 863 "surfaces/surface_manager_unittest.cc",
861 "surfaces/surface_sequence_generator_unittest.cc", 864 "surfaces/surface_sequence_generator_unittest.cc",
865 "surfaces/surface_synchronization_unittest.cc",
862 "surfaces/surface_unittest.cc", 866 "surfaces/surface_unittest.cc",
863 "surfaces/surfaces_pixeltest.cc", 867 "surfaces/surfaces_pixeltest.cc",
864 868
865 # Setup. 869 # Setup.
866 "test/cc_test_suite.cc", 870 "test/cc_test_suite.cc",
867 "test/cc_test_suite.h", 871 "test/cc_test_suite.h",
868 "test/run_all_unittests.cc", 872 "test/run_all_unittests.cc",
869 ] 873 ]
870 874
871 if (!is_android) { 875 if (!is_android) {
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
963 data = [ 967 data = [
964 "test/data/", 968 "test/data/",
965 969
966 # Needed for isolate script to execute. 970 # Needed for isolate script to execute.
967 "//testing/scripts/common.py", 971 "//testing/scripts/common.py",
968 "//testing/xvfb.py", 972 "//testing/xvfb.py",
969 "//testing/scripts/run_gtest_perf_test.py", 973 "//testing/scripts/run_gtest_perf_test.py",
970 "//tools/perf/generate_legacy_perf_dashboard_json.py", 974 "//tools/perf/generate_legacy_perf_dashboard_json.py",
971 ] 975 ]
972 } 976 }
OLDNEW
« no previous file with comments | « no previous file | cc/surfaces/BUILD.gn » ('j') | cc/surfaces/compositor_frame_sink_support.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698