OLD | NEW |
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 Loading... |
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 "framesink_manager.cc", |
| 48 "framesink_manager.h", |
47 "referenced_surface_tracker.cc", | 49 "referenced_surface_tracker.cc", |
48 "referenced_surface_tracker.h", | 50 "referenced_surface_tracker.h", |
49 "sequence_surface_reference_factory.cc", | 51 "sequence_surface_reference_factory.cc", |
50 "sequence_surface_reference_factory.h", | 52 "sequence_surface_reference_factory.h", |
51 "surface.cc", | 53 "surface.cc", |
52 "surface.h", | 54 "surface.h", |
53 "surface_aggregator.cc", | 55 "surface_aggregator.cc", |
54 "surface_aggregator.h", | 56 "surface_aggregator.h", |
55 "surface_factory.cc", | 57 "surface_factory.cc", |
56 "surface_factory.h", | 58 "surface_factory.h", |
(...skipping 21 matching lines...) Expand all Loading... |
78 "//base/third_party/dynamic_annotations", | 80 "//base/third_party/dynamic_annotations", |
79 "//cc", | 81 "//cc", |
80 "//gpu/command_buffer/client:gles2_interface", | 82 "//gpu/command_buffer/client:gles2_interface", |
81 "//gpu/command_buffer/common", | 83 "//gpu/command_buffer/common", |
82 "//skia", | 84 "//skia", |
83 "//ui/events:events_base", | 85 "//ui/events:events_base", |
84 "//ui/gfx", | 86 "//ui/gfx", |
85 "//ui/gfx/geometry", | 87 "//ui/gfx/geometry", |
86 ] | 88 ] |
87 } | 89 } |
OLD | NEW |