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