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

Unified Diff: services/ui/public/cpp/gpu/BUILD.gn

Issue 2511143004: mus: Split the gpu client-lib into a separate component. (Closed)
Patch Set: . Created 4 years, 1 month 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
Index: services/ui/public/cpp/gpu/BUILD.gn
diff --git a/services/ui/public/cpp/gpu/BUILD.gn b/services/ui/public/cpp/gpu/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..8bb9bfe096652d14f26fcb2b04d345b51383948f
--- /dev/null
+++ b/services/ui/public/cpp/gpu/BUILD.gn
@@ -0,0 +1,42 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# 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")
+
+source_set("gpu") {
+ sources = [
+ "gpu_service.h",
+ ]
+
+ deps = [
+ ":internal",
+ "//gpu/ipc/client",
+ "//services/ui/public/interfaces",
+ ]
+
+ allow_circular_includes_from = [ ":internal" ]
+}
+
+source_set("internal") {
+ visibility = [
+ ":gpu",
+ "//services/ui/demo:lib",
+ ]
+
+ sources = [
+ "gpu_service.cc",
+ "mojo_gpu_memory_buffer_manager.cc",
+ "mojo_gpu_memory_buffer_manager.h",
+ ]
+
+ deps = [
+ "//base",
+ "//gpu/command_buffer/client",
+ "//gpu/ipc/client",
+ "//mojo/public/cpp/system",
+ "//services/service_manager/public/cpp",
+ "//services/ui/common:mus_common",
+ "//services/ui/public/interfaces",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698