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

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

Issue 2527283003: cc: Introduce BeginFrame sequence numbers and acknowledgements.
Patch Set: . Created 4 years 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 14 matching lines...) Expand all
25 cc_component("surfaces") { 25 cc_component("surfaces") {
26 output_name = "cc_surfaces" 26 output_name = "cc_surfaces"
27 sources = [ 27 sources = [
28 "compositor_frame_sink_support.cc", 28 "compositor_frame_sink_support.cc",
29 "compositor_frame_sink_support.h", 29 "compositor_frame_sink_support.h",
30 "compositor_frame_sink_support_client.h", 30 "compositor_frame_sink_support_client.h",
31 "direct_compositor_frame_sink.cc", 31 "direct_compositor_frame_sink.cc",
32 "direct_compositor_frame_sink.h", 32 "direct_compositor_frame_sink.h",
33 "display.cc", 33 "display.cc",
34 "display.h", 34 "display.h",
35 "display_begin_frame_source.cc",
36 "display_begin_frame_source.h",
35 "display_client.h", 37 "display_client.h",
36 "display_scheduler.cc", 38 "display_scheduler.cc",
37 "display_scheduler.h", 39 "display_scheduler.h",
38 "surface.cc", 40 "surface.cc",
39 "surface.h", 41 "surface.h",
40 "surface_aggregator.cc", 42 "surface_aggregator.cc",
41 "surface_aggregator.h", 43 "surface_aggregator.h",
42 "surface_factory.cc", 44 "surface_factory.cc",
43 "surface_factory.h", 45 "surface_factory.h",
44 "surface_factory_client.h", 46 "surface_factory_client.h",
(...skipping 20 matching lines...) Expand all
65 "//base/third_party/dynamic_annotations", 67 "//base/third_party/dynamic_annotations",
66 "//cc", 68 "//cc",
67 "//gpu/command_buffer/client:gles2_interface", 69 "//gpu/command_buffer/client:gles2_interface",
68 "//gpu/command_buffer/common", 70 "//gpu/command_buffer/common",
69 "//skia", 71 "//skia",
70 "//ui/events:events_base", 72 "//ui/events:events_base",
71 "//ui/gfx", 73 "//ui/gfx",
72 "//ui/gfx/geometry", 74 "//ui/gfx/geometry",
73 ] 75 ]
74 } 76 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698