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

Side by Side Diff: cc/surfaces/BUILD.gn

Issue 2676373004: Implement service-side surface synchronization (Closed)
Patch Set: Better unit test name Created 3 years, 10 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
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 6
7 cc_source_set("surface_id") { 7 cc_source_set("surface_id") {
8 sources = [ 8 sources = [
9 "frame_sink_id.cc", 9 "frame_sink_id.cc",
10 "frame_sink_id.h", 10 "frame_sink_id.h",
(...skipping 26 matching lines...) Expand all
37 "compositor_frame_sink_support_client.h", 37 "compositor_frame_sink_support_client.h",
38 "direct_compositor_frame_sink.cc", 38 "direct_compositor_frame_sink.cc",
39 "direct_compositor_frame_sink.h", 39 "direct_compositor_frame_sink.h",
40 "direct_surface_reference_factory.cc", 40 "direct_surface_reference_factory.cc",
41 "direct_surface_reference_factory.h", 41 "direct_surface_reference_factory.h",
42 "display.cc", 42 "display.cc",
43 "display.h", 43 "display.h",
44 "display_client.h", 44 "display_client.h",
45 "display_scheduler.cc", 45 "display_scheduler.cc",
46 "display_scheduler.h", 46 "display_scheduler.h",
47 "pending_frame_observer.h",
47 "referenced_surface_tracker.cc", 48 "referenced_surface_tracker.cc",
48 "referenced_surface_tracker.h", 49 "referenced_surface_tracker.h",
49 "sequence_surface_reference_factory.cc", 50 "sequence_surface_reference_factory.cc",
50 "sequence_surface_reference_factory.h", 51 "sequence_surface_reference_factory.h",
51 "surface.cc", 52 "surface.cc",
52 "surface.h", 53 "surface.h",
53 "surface_aggregator.cc", 54 "surface_aggregator.cc",
54 "surface_aggregator.h", 55 "surface_aggregator.h",
56 "surface_dependency_tracker.cc",
57 "surface_dependency_tracker.h",
55 "surface_factory.cc", 58 "surface_factory.cc",
56 "surface_factory.h", 59 "surface_factory.h",
57 "surface_factory_client.h", 60 "surface_factory_client.h",
58 "surface_hittest.cc", 61 "surface_hittest.cc",
59 "surface_hittest.h", 62 "surface_hittest.h",
60 "surface_hittest_delegate.h", 63 "surface_hittest_delegate.h",
61 "surface_id_allocator.cc", 64 "surface_id_allocator.cc",
62 "surface_id_allocator.h", 65 "surface_id_allocator.h",
63 "surface_manager.cc", 66 "surface_manager.cc",
64 "surface_manager.h", 67 "surface_manager.h",
(...skipping 13 matching lines...) Expand all
78 "//base/third_party/dynamic_annotations", 81 "//base/third_party/dynamic_annotations",
79 "//cc", 82 "//cc",
80 "//gpu/command_buffer/client:gles2_interface", 83 "//gpu/command_buffer/client:gles2_interface",
81 "//gpu/command_buffer/common", 84 "//gpu/command_buffer/common",
82 "//skia", 85 "//skia",
83 "//ui/events:events_base", 86 "//ui/events:events_base",
84 "//ui/gfx", 87 "//ui/gfx",
85 "//ui/gfx/geometry", 88 "//ui/gfx/geometry",
86 ] 89 ]
87 } 90 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698