| 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", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 "//components/mus/public/cpp/surfaces", | 29 "//components/mus/public/cpp/surfaces", |
| 30 "//components/mus/public/interfaces", | 30 "//components/mus/public/interfaces", |
| 31 "//gpu/command_buffer/client", | 31 "//gpu/command_buffer/client", |
| 32 "//gpu/command_buffer/client:gles2_cmd_helper", | 32 "//gpu/command_buffer/client:gles2_cmd_helper", |
| 33 "//gpu/command_buffer/client:gles2_implementation", | 33 "//gpu/command_buffer/client:gles2_implementation", |
| 34 "//gpu/command_buffer/client:gles2_interface", | 34 "//gpu/command_buffer/client:gles2_interface", |
| 35 "//services/shell/public/cpp", | 35 "//services/shell/public/cpp", |
| 36 "//services/tracing/public/cpp", | 36 "//services/tracing/public/cpp", |
| 37 "//ui/gfx", | 37 "//ui/gfx", |
| 38 "//ui/gfx/geometry/mojo", | 38 "//ui/gfx/geometry/mojo", |
| 39 "//ui/gfx/geometry/mojo:interfaces", | |
| 40 "//ui/gl", | 39 "//ui/gl", |
| 41 ] | 40 ] |
| 42 | 41 |
| 43 if (use_ozone) { | 42 if (use_ozone) { |
| 44 sources += [ | 43 sources += [ |
| 45 "direct_output_surface_ozone.cc", | 44 "direct_output_surface_ozone.cc", |
| 46 "direct_output_surface_ozone.h", | 45 "direct_output_surface_ozone.h", |
| 47 "ozone_gpu_memory_buffer_manager.cc", | 46 "ozone_gpu_memory_buffer_manager.cc", |
| 48 "ozone_gpu_memory_buffer_manager.h", | 47 "ozone_gpu_memory_buffer_manager.h", |
| 49 ] | 48 ] |
| 50 deps += [ "//gpu/command_buffer/common" ] | 49 deps += [ "//gpu/command_buffer/common" ] |
| 51 } | 50 } |
| 52 } | 51 } |
| OLD | NEW |