| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 source_set("surfaces") { | 7 source_set("surfaces") { |
| 8 sources = [ | 8 sources = [ |
| 9 "compositor_frame_sink_delegate.h", |
| 10 "compositor_frame_sink_factory_impl.cc", |
| 11 "compositor_frame_sink_factory_impl.h", |
| 12 "compositor_frame_sink_impl.cc", |
| 13 "compositor_frame_sink_impl.h", |
| 9 "direct_output_surface.cc", | 14 "direct_output_surface.cc", |
| 10 "direct_output_surface.h", | 15 "direct_output_surface.h", |
| 11 "display_compositor.cc", | 16 "display_compositor.cc", |
| 12 "display_compositor.h", | 17 "display_compositor.h", |
| 18 "display_compositor_impl.cc", |
| 19 "display_compositor_impl.h", |
| 20 "display_impl.cc", |
| 21 "display_impl.h", |
| 13 "surfaces_context_provider.cc", | 22 "surfaces_context_provider.cc", |
| 14 "surfaces_context_provider.h", | 23 "surfaces_context_provider.h", |
| 15 "surfaces_context_provider_delegate.h", | 24 "surfaces_context_provider_delegate.h", |
| 16 "surfaces_state.cc", | 25 "surfaces_state.cc", |
| 17 "surfaces_state.h", | 26 "surfaces_state.h", |
| 18 "top_level_display_client.cc", | 27 "top_level_display_client.cc", |
| 19 "top_level_display_client.h", | 28 "top_level_display_client.h", |
| 20 ] | 29 ] |
| 21 | 30 |
| 22 deps = [ | 31 deps = [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 43 if (use_ozone) { | 52 if (use_ozone) { |
| 44 sources += [ | 53 sources += [ |
| 45 "direct_output_surface_ozone.cc", | 54 "direct_output_surface_ozone.cc", |
| 46 "direct_output_surface_ozone.h", | 55 "direct_output_surface_ozone.h", |
| 47 "ozone_gpu_memory_buffer_manager.cc", | 56 "ozone_gpu_memory_buffer_manager.cc", |
| 48 "ozone_gpu_memory_buffer_manager.h", | 57 "ozone_gpu_memory_buffer_manager.h", |
| 49 ] | 58 ] |
| 50 deps += [ "//gpu/command_buffer/common" ] | 59 deps += [ "//gpu/command_buffer/common" ] |
| 51 } | 60 } |
| 52 } | 61 } |
| OLD | NEW |