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

Unified Diff: components/mus/gpu/BUILD.gn

Issue 2049083002: Implement MusGpuMemoryBufferManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update the mojom document 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/mus/common/gpu_service.cc ('k') | components/mus/gpu/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/mus/gpu/BUILD.gn
diff --git a/components/mus/gpu/BUILD.gn b/components/mus/gpu/BUILD.gn
index 2449fcce476d2c05ac4bb28225e2637bff9f6344..8ba5cabfd1e22e91caf23003ebca2d85bf5fc774 100644
--- a/components/mus/gpu/BUILD.gn
+++ b/components/mus/gpu/BUILD.gn
@@ -2,6 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//build/config/ui.gni")
import("//mojo/public/mojo_application_manifest.gni")
import("//testing/test.gni")
@@ -13,6 +14,8 @@ source_set("gpu") {
"gpu_service_impl.h",
"gpu_service_mus.cc",
"gpu_service_mus.h",
+ "mus_gpu_memory_buffer_manager.cc",
+ "mus_gpu_memory_buffer_manager.h",
]
deps = [
@@ -27,6 +30,10 @@ source_set("gpu") {
"//ui/gfx:memory_buffer",
"//ui/gl/init",
]
+
+ if (use_ozone) {
+ deps += [ "//ui/ozone:ozone" ]
+ }
}
group("tests") {
« no previous file with comments | « components/mus/common/gpu_service.cc ('k') | components/mus/gpu/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698