Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(479)

Side by Side Diff: components/mus/surfaces/BUILD.gn

Issue 1976703003: Impl mus::mojom::GpuService to enable using Chrome IPC version gpu CmdBuf in mus (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "surfaces_context_provider.cc", 13 "surfaces_context_provider.cc",
14 "surfaces_context_provider.h", 14 "surfaces_context_provider.h",
15 "surfaces_context_provider_delegate.h", 15 "surfaces_context_provider_delegate.h",
16 "surfaces_state.cc", 16 "surfaces_state.cc",
17 "surfaces_state.h", 17 "surfaces_state.h",
18 "top_level_display_client.cc", 18 "top_level_display_client.cc",
19 "top_level_display_client.h", 19 "top_level_display_client.h",
20 ] 20 ]
21 21
22 deps = [ 22 deps = [
23 "//base", 23 "//base",
24 "//cc", 24 "//cc",
25 "//cc/surfaces", 25 "//cc/surfaces",
26 "//cc/surfaces:surface_id", 26 "//cc/surfaces:surface_id",
27 "//components/display_compositor", 27 "//components/display_compositor",
28 "//components/mus/common:mus_common",
28 "//components/mus/gles2", 29 "//components/mus/gles2",
30 "//components/mus/gpu",
29 "//components/mus/public/cpp/surfaces", 31 "//components/mus/public/cpp/surfaces",
30 "//components/mus/public/interfaces", 32 "//components/mus/public/interfaces",
31 "//gpu/command_buffer/client", 33 "//gpu/command_buffer/client",
32 "//gpu/command_buffer/client:gles2_cmd_helper", 34 "//gpu/command_buffer/client:gles2_cmd_helper",
33 "//gpu/command_buffer/client:gles2_implementation", 35 "//gpu/command_buffer/client:gles2_implementation",
34 "//gpu/command_buffer/client:gles2_interface", 36 "//gpu/command_buffer/client:gles2_interface",
37 "//gpu/ipc/client",
35 "//services/shell/public/cpp", 38 "//services/shell/public/cpp",
36 "//services/tracing/public/cpp", 39 "//services/tracing/public/cpp",
37 "//ui/gfx", 40 "//ui/gfx",
38 "//ui/gfx/geometry/mojo", 41 "//ui/gfx/geometry/mojo",
39 "//ui/gl", 42 "//ui/gl",
40 ] 43 ]
41 44
42 if (use_ozone) { 45 if (use_ozone) {
43 sources += [ 46 sources += [
44 "direct_output_surface_ozone.cc", 47 "direct_output_surface_ozone.cc",
45 "direct_output_surface_ozone.h", 48 "direct_output_surface_ozone.h",
46 "ozone_gpu_memory_buffer_manager.cc", 49 "ozone_gpu_memory_buffer_manager.cc",
47 "ozone_gpu_memory_buffer_manager.h", 50 "ozone_gpu_memory_buffer_manager.h",
48 ] 51 ]
49 deps += [ "//gpu/command_buffer/common" ] 52 deps += [ "//gpu/command_buffer/common" ]
50 } 53 }
51 } 54 }
OLDNEW
« no previous file with comments | « components/mus/public/interfaces/gpu_service.mojom ('k') | components/mus/surfaces/surfaces_context_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698