| 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 27 matching lines...) Expand all Loading... |
| 38 "compositor_frame_sink_support_client.h", | 38 "compositor_frame_sink_support_client.h", |
| 39 "direct_compositor_frame_sink.cc", | 39 "direct_compositor_frame_sink.cc", |
| 40 "direct_compositor_frame_sink.h", | 40 "direct_compositor_frame_sink.h", |
| 41 "direct_surface_reference_factory.cc", | 41 "direct_surface_reference_factory.cc", |
| 42 "direct_surface_reference_factory.h", | 42 "direct_surface_reference_factory.h", |
| 43 "display.cc", | 43 "display.cc", |
| 44 "display.h", | 44 "display.h", |
| 45 "display_client.h", | 45 "display_client.h", |
| 46 "display_scheduler.cc", | 46 "display_scheduler.cc", |
| 47 "display_scheduler.h", | 47 "display_scheduler.h", |
| 48 "framesink_manager.cc", |
| 49 "framesink_manager.h", |
| 48 "local_surface_id_allocator.cc", | 50 "local_surface_id_allocator.cc", |
| 49 "local_surface_id_allocator.h", | 51 "local_surface_id_allocator.h", |
| 50 "pending_frame_observer.h", | 52 "pending_frame_observer.h", |
| 51 "referenced_surface_tracker.cc", | 53 "referenced_surface_tracker.cc", |
| 52 "referenced_surface_tracker.h", | 54 "referenced_surface_tracker.h", |
| 53 "sequence_surface_reference_factory.cc", | 55 "sequence_surface_reference_factory.cc", |
| 54 "sequence_surface_reference_factory.h", | 56 "sequence_surface_reference_factory.h", |
| 55 "surface.cc", | 57 "surface.cc", |
| 56 "surface.h", | 58 "surface.h", |
| 57 "surface_aggregator.cc", | 59 "surface_aggregator.cc", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 83 "//cc", | 85 "//cc", |
| 84 "//gpu/command_buffer/client:gles2_interface", | 86 "//gpu/command_buffer/client:gles2_interface", |
| 85 "//gpu/command_buffer/common", | 87 "//gpu/command_buffer/common", |
| 86 "//gpu/vulkan:features", | 88 "//gpu/vulkan:features", |
| 87 "//skia", | 89 "//skia", |
| 88 "//ui/events:events_base", | 90 "//ui/events:events_base", |
| 89 "//ui/gfx", | 91 "//ui/gfx", |
| 90 "//ui/gfx/geometry", | 92 "//ui/gfx/geometry", |
| 91 ] | 93 ] |
| 92 } | 94 } |
| OLD | NEW |