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