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

Unified Diff: services/ui/common/BUILD.gn

Issue 2534663002: mus: Move MusGpuMemoryBufferManager into common. (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
« no previous file with comments | « no previous file | services/ui/common/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/common/BUILD.gn
diff --git a/services/ui/common/BUILD.gn b/services/ui/common/BUILD.gn
index a52f23d7ce8094f98df8d847c2e9cf179f12bae2..a00b64f6d2867f043aca48a77443669f7b9f9e0a 100644
--- a/services/ui/common/BUILD.gn
+++ b/services/ui/common/BUILD.gn
@@ -10,8 +10,6 @@ source_set("mus_common") {
sources = [
"event_matcher_util.cc",
"event_matcher_util.h",
- "generic_shared_memory_id_generator.cc",
- "generic_shared_memory_id_generator.h",
"switches.cc",
"switches.h",
"transient_window_utils.h",
@@ -38,6 +36,26 @@ source_set("mus_common") {
]
}
+source_set("service_common") {
sky 2016/11/26 16:42:19 service_common is quite redundant given this is th
sadrul 2016/11/27 01:13:44 The 'mus_common' target above is used by both the
sadrul 2016/11/27 04:16:25 Renamed to 'server_gpu', and added comment here to
+ sources = [
+ "generic_shared_memory_id_generator.cc",
+ "generic_shared_memory_id_generator.h",
+ "mus_gpu_memory_buffer_manager.cc",
+ "mus_gpu_memory_buffer_manager.h",
+ ]
+
+ deps = [
+ "//gpu/ipc/client",
+ ]
+
+ public_deps = [
+ "//gpu/command_buffer/client",
+ "//gpu/ipc/common",
+ "//services/ui/gpu/interfaces",
+ "//ui/gfx",
+ ]
+}
+
source_set("run_all_service_tests") {
testonly = true
« no previous file with comments | « no previous file | services/ui/common/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698