| 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 "display_compositor.cc", | 9 "display_compositor.cc", |
| 10 "display_compositor.h", | 10 "display_compositor.h", |
| 11 "display_output_surface.cc", | 11 "display_output_surface.cc", |
| 12 "display_output_surface.h", | 12 "display_output_surface.h", |
| 13 "display_provider.h", |
| 14 "mus_display_provider.cc", |
| 15 "mus_display_provider.h", |
| 13 ] | 16 ] |
| 14 | 17 |
| 15 deps = [ | 18 deps = [ |
| 16 "//base", | 19 "//base", |
| 17 "//cc", | 20 "//cc", |
| 18 "//cc/ipc:interfaces", | 21 "//cc/ipc:interfaces", |
| 19 "//cc/surfaces", | 22 "//cc/surfaces", |
| 20 "//components/display_compositor", | 23 "//components/display_compositor", |
| 21 "//gpu/command_buffer/client", | 24 "//gpu/command_buffer/client", |
| 22 "//gpu/command_buffer/client:gles2_interface", | 25 "//gpu/command_buffer/client:gles2_interface", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 34 sources += [ | 37 sources += [ |
| 35 "display_output_surface_ozone.cc", | 38 "display_output_surface_ozone.cc", |
| 36 "display_output_surface_ozone.h", | 39 "display_output_surface_ozone.h", |
| 37 ] | 40 ] |
| 38 deps += [ | 41 deps += [ |
| 39 "//gpu/command_buffer/common", | 42 "//gpu/command_buffer/common", |
| 40 "//ui/gl", | 43 "//ui/gl", |
| 41 ] | 44 ] |
| 42 } | 45 } |
| 43 } | 46 } |
| OLD | NEW |