| 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.cc", |
| 10 "compositor_frame_sink.h", |
| 9 "direct_output_surface.cc", | 11 "direct_output_surface.cc", |
| 10 "direct_output_surface.h", | 12 "direct_output_surface.h", |
| 11 "display_compositor.cc", | 13 "display_compositor.cc", |
| 12 "display_compositor.h", | 14 "display_compositor.h", |
| 15 "display_compositor_client.h", |
| 13 "surfaces_context_provider.cc", | 16 "surfaces_context_provider.cc", |
| 14 "surfaces_context_provider.h", | 17 "surfaces_context_provider.h", |
| 15 "surfaces_context_provider_delegate.h", | 18 "surfaces_context_provider_delegate.h", |
| 16 "surfaces_state.cc", | |
| 17 "surfaces_state.h", | |
| 18 ] | 19 ] |
| 19 | 20 |
| 20 deps = [ | 21 deps = [ |
| 21 "//base", | 22 "//base", |
| 22 "//cc", | 23 "//cc", |
| 23 "//cc/surfaces", | 24 "//cc/surfaces", |
| 24 "//cc/surfaces:surface_id", | 25 "//cc/surfaces:surface_id", |
| 25 "//components/display_compositor", | 26 "//components/display_compositor", |
| 26 "//gpu/command_buffer/client", | 27 "//gpu/command_buffer/client", |
| 27 "//gpu/command_buffer/client:gles2_cmd_helper", | 28 "//gpu/command_buffer/client:gles2_cmd_helper", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 39 ] | 40 ] |
| 40 | 41 |
| 41 if (use_ozone) { | 42 if (use_ozone) { |
| 42 sources += [ | 43 sources += [ |
| 43 "direct_output_surface_ozone.cc", | 44 "direct_output_surface_ozone.cc", |
| 44 "direct_output_surface_ozone.h", | 45 "direct_output_surface_ozone.h", |
| 45 ] | 46 ] |
| 46 deps += [ "//gpu/command_buffer/common" ] | 47 deps += [ "//gpu/command_buffer/common" ] |
| 47 } | 48 } |
| 48 } | 49 } |
| OLD | NEW |