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

Side by Side Diff: components/mus/gles2/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
« no previous file with comments | « components/mus/common/switches.cc ('k') | components/mus/gles2/command_buffer_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("gles2") { 7 source_set("gles2") {
8 visibility = [ 8 visibility = [
9 "//components/mus:*", 9 "//components/mus:*",
10 "//components/mus/ws:*", 10 "//components/mus/ws:*",
(...skipping 21 matching lines...) Expand all
32 "gpu_memory_tracker.h", 32 "gpu_memory_tracker.h",
33 "gpu_state.cc", 33 "gpu_state.cc",
34 "gpu_state.h", 34 "gpu_state.h",
35 ] 35 ]
36 36
37 public_deps = [ 37 public_deps = [
38 ":lib", 38 ":lib",
39 ] 39 ]
40 deps = [ 40 deps = [
41 "//base", 41 "//base",
42 "//components/mus/common:mus_common",
42 "//components/mus/public/interfaces", 43 "//components/mus/public/interfaces",
43 "//gpu/command_buffer/client", 44 "//gpu/command_buffer/client",
44 "//gpu/command_buffer/client:gles2_interface", 45 "//gpu/command_buffer/client:gles2_interface",
45 "//gpu/command_buffer/common:gles2_utils", 46 "//gpu/command_buffer/common:gles2_utils",
46 "//gpu/command_buffer/service", 47 "//gpu/command_buffer/service",
47 "//gpu/config:config", 48 "//gpu/config:config",
48 "//mojo/public/cpp/bindings", 49 "//mojo/public/cpp/bindings",
49 "//mojo/public/cpp/system", 50 "//mojo/public/cpp/system",
50 "//ui/gfx", 51 "//ui/gfx",
51 "//ui/gfx/geometry", 52 "//ui/gfx/geometry",
52 "//ui/gfx/geometry/mojo", 53 "//ui/gfx/geometry/mojo",
53 "//ui/gl", 54 "//ui/gl",
54 "//ui/gl/init", 55 "//ui/gl/init",
55 ] 56 ]
56 57
57 if (use_ozone) { 58 if (use_ozone) {
58 deps += [ "//ui/ozone:ozone" ] 59 deps += [ "//ui/ozone:ozone" ]
59 sources += [ 60 sources += [
60 "ozone_gpu_memory_buffer.cc", 61 "ozone_gpu_memory_buffer.cc",
61 "ozone_gpu_memory_buffer.h", 62 "ozone_gpu_memory_buffer.h",
62 ] 63 ]
63 } 64 }
64 65
65 include_dirs = [ "../.." ] 66 include_dirs = [ "../.." ]
66 } 67 }
67 68
68 source_set("lib") { 69 source_set("lib") {
69 sources = [ 70 sources = [
70 "command_buffer_type_conversions.cc",
71 "command_buffer_type_conversions.h",
72 "gpu_memory_buffer_impl.cc", 71 "gpu_memory_buffer_impl.cc",
73 "gpu_memory_buffer_impl.h", 72 "gpu_memory_buffer_impl.h",
74 "mojo_buffer_backing.cc", 73 "mojo_buffer_backing.cc",
75 "mojo_buffer_backing.h", 74 "mojo_buffer_backing.h",
76 "mojo_gpu_memory_buffer.cc", 75 "mojo_gpu_memory_buffer.cc",
77 "mojo_gpu_memory_buffer.h", 76 "mojo_gpu_memory_buffer.h",
78 "mojo_gpu_memory_buffer_manager.cc", 77 "mojo_gpu_memory_buffer_manager.cc",
79 "mojo_gpu_memory_buffer_manager.h", 78 "mojo_gpu_memory_buffer_manager.h",
80 "raster_thread_helper.cc", 79 "raster_thread_helper.cc",
81 "raster_thread_helper.h", 80 "raster_thread_helper.h",
82 ] 81 ]
83 82
84 deps = [ 83 deps = [
85 "//base", 84 "//base",
86 "//cc", 85 "//cc",
87 "//components/mus/public/interfaces", 86 "//components/mus/public/interfaces",
88 "//gpu/command_buffer/client", 87 "//gpu/command_buffer/client",
89 "//gpu/command_buffer/common", 88 "//gpu/command_buffer/common",
90 "//gpu/config:config", 89 "//gpu/config:config",
91 "//mojo/public/cpp/bindings", 90 "//mojo/public/cpp/bindings",
92 "//mojo/public/cpp/system", 91 "//mojo/public/cpp/system",
93 "//ui/gfx", 92 "//ui/gfx",
94 "//ui/gfx/geometry", 93 "//ui/gfx/geometry",
95 ] 94 ]
96 95
97 include_dirs = [ "../.." ] 96 include_dirs = [ "../.." ]
98 } 97 }
OLDNEW
« no previous file with comments | « components/mus/common/switches.cc ('k') | components/mus/gles2/command_buffer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698