| 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 "direct_output_surface.cc", | 9 "direct_output_surface.cc", |
| 10 "direct_output_surface.h", | 10 "direct_output_surface.h", |
| 11 "display_compositor.cc", |
| 12 "display_compositor.h", |
| 11 "surfaces_context_provider.cc", | 13 "surfaces_context_provider.cc", |
| 12 "surfaces_context_provider.h", | 14 "surfaces_context_provider.h", |
| 13 "surfaces_context_provider_delegate.h", | 15 "surfaces_context_provider_delegate.h", |
| 14 "surfaces_state.cc", | 16 "surfaces_state.cc", |
| 15 "surfaces_state.h", | 17 "surfaces_state.h", |
| 16 "top_level_display_client.cc", | 18 "top_level_display_client.cc", |
| 17 "top_level_display_client.h", | 19 "top_level_display_client.h", |
| 18 ] | 20 ] |
| 19 | 21 |
| 20 deps = [ | 22 deps = [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 41 if (use_ozone) { | 43 if (use_ozone) { |
| 42 sources += [ | 44 sources += [ |
| 43 "direct_output_surface_ozone.cc", | 45 "direct_output_surface_ozone.cc", |
| 44 "direct_output_surface_ozone.h", | 46 "direct_output_surface_ozone.h", |
| 45 "ozone_gpu_memory_buffer_manager.cc", | 47 "ozone_gpu_memory_buffer_manager.cc", |
| 46 "ozone_gpu_memory_buffer_manager.h", | 48 "ozone_gpu_memory_buffer_manager.h", |
| 47 ] | 49 ] |
| 48 deps += [ "//gpu/command_buffer/common" ] | 50 deps += [ "//gpu/command_buffer/common" ] |
| 49 } | 51 } |
| 50 } | 52 } |
| OLD | NEW |