| 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 "surfaces_context_provider.cc", | 11 "surfaces_context_provider.cc", |
| 12 "surfaces_context_provider.h", | 12 "surfaces_context_provider.h", |
| 13 "surfaces_context_provider_delegate.h", | 13 "surfaces_context_provider_delegate.h", |
| 14 "surfaces_state.cc", | 14 "surfaces_state.cc", |
| 15 "surfaces_state.h", | 15 "surfaces_state.h", |
| 16 "top_level_display_client.cc", | 16 "top_level_display_client.cc", |
| 17 "top_level_display_client.h", | 17 "top_level_display_client.h", |
| 18 ] | 18 ] |
| 19 | 19 |
| 20 deps = [ | 20 deps = [ |
| 21 "//base", | 21 "//base", |
| 22 "//cc", | 22 "//cc", |
| 23 "//cc/surfaces", | 23 "//cc/surfaces", |
| 24 "//cc/surfaces:surface_id", | 24 "//cc/surfaces:surface_id", |
| 25 "//components/display_compositor", |
| 25 "//components/mus/gles2", | 26 "//components/mus/gles2", |
| 26 "//components/mus/public/interfaces", | 27 "//components/mus/public/interfaces", |
| 27 "//gpu/command_buffer/client", | 28 "//gpu/command_buffer/client", |
| 28 "//gpu/command_buffer/client:gles2_cmd_helper", | 29 "//gpu/command_buffer/client:gles2_cmd_helper", |
| 29 "//gpu/command_buffer/client:gles2_implementation", | 30 "//gpu/command_buffer/client:gles2_implementation", |
| 30 "//gpu/command_buffer/client:gles2_interface", | 31 "//gpu/command_buffer/client:gles2_interface", |
| 31 "//mojo/converters/geometry", | 32 "//mojo/converters/geometry", |
| 32 "//mojo/converters/surfaces", | 33 "//mojo/converters/surfaces", |
| 33 "//services/shell/public/cpp", | 34 "//services/shell/public/cpp", |
| 34 "//services/tracing/public/cpp", | 35 "//services/tracing/public/cpp", |
| 35 "//ui/gfx", | 36 "//ui/gfx", |
| 36 "//ui/gl", | 37 "//ui/gl", |
| 37 "//ui/mojo/geometry:interfaces", | 38 "//ui/mojo/geometry:interfaces", |
| 38 ] | 39 ] |
| 39 | 40 |
| 40 if (use_ozone) { | 41 if (use_ozone) { |
| 41 sources += [ | 42 sources += [ |
| 42 "buffer_queue.cc", | |
| 43 "buffer_queue.h", | |
| 44 "direct_output_surface_ozone.cc", | 43 "direct_output_surface_ozone.cc", |
| 45 "direct_output_surface_ozone.h", | 44 "direct_output_surface_ozone.h", |
| 45 "ozone_gpu_memory_buffer_manager.cc", |
| 46 "ozone_gpu_memory_buffer_manager.h", |
| 46 ] | 47 ] |
| 47 deps += [ "//gpu/command_buffer/common" ] | 48 deps += [ "//gpu/command_buffer/common" ] |
| 48 } | 49 } |
| 49 } | 50 } |
| OLD | NEW |