| 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 12 matching lines...) Expand all Loading... |
| 23 "//components/display_compositor", | 23 "//components/display_compositor", |
| 24 "//gpu/command_buffer/client", | 24 "//gpu/command_buffer/client", |
| 25 "//gpu/command_buffer/client:gles2_cmd_helper", | 25 "//gpu/command_buffer/client:gles2_cmd_helper", |
| 26 "//gpu/command_buffer/client:gles2_implementation", | 26 "//gpu/command_buffer/client:gles2_implementation", |
| 27 "//gpu/command_buffer/client:gles2_interface", | 27 "//gpu/command_buffer/client:gles2_interface", |
| 28 "//gpu/ipc:command_buffer", | 28 "//gpu/ipc:command_buffer", |
| 29 "//gpu/ipc/client", | 29 "//gpu/ipc/client", |
| 30 "//gpu/ipc/common", | 30 "//gpu/ipc/common", |
| 31 "//services/service_manager/public/cpp", | 31 "//services/service_manager/public/cpp", |
| 32 "//services/tracing/public/cpp", | 32 "//services/tracing/public/cpp", |
| 33 "//services/ui/common:server_gpu", | |
| 34 "//services/ui/gpu/interfaces", | |
| 35 "//services/ui/public/interfaces", | |
| 36 "//ui/display/types", | 33 "//ui/display/types", |
| 37 "//ui/gfx", | 34 "//ui/gfx", |
| 38 "//ui/gfx/geometry/mojo", | 35 "//ui/gfx/geometry/mojo", |
| 39 "//ui/gl", | 36 "//ui/gl", |
| 40 ] | 37 ] |
| 41 | 38 |
| 42 if (use_ozone) { | 39 if (use_ozone) { |
| 43 sources += [ | 40 sources += [ |
| 44 "direct_output_surface_ozone.cc", | 41 "direct_output_surface_ozone.cc", |
| 45 "direct_output_surface_ozone.h", | 42 "direct_output_surface_ozone.h", |
| 46 ] | 43 ] |
| 47 deps += [ "//gpu/command_buffer/common" ] | 44 deps += [ "//gpu/command_buffer/common" ] |
| 48 } | 45 } |
| 49 } | 46 } |
| OLD | NEW |