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

Unified Diff: components/mus/public/cpp/input_devices/BUILD.gn

Issue 1992443002: Add Mojo IPC based input-device service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cleanup_ddm
Patch Set: Rebase/update. 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
Index: components/mus/public/cpp/input_devices/BUILD.gn
diff --git a/ui/gl/init/BUILD.gn b/components/mus/public/cpp/input_devices/BUILD.gn
similarity index 50%
copy from ui/gl/init/BUILD.gn
copy to components/mus/public/cpp/input_devices/BUILD.gn
index 844ee291e5d59c58f1791c1913ba5f7f295d3965..c5c7734831ab84c12b6e7d2653bf534a2c0e51b0 100644
--- a/ui/gl/init/BUILD.gn
+++ b/components/mus/public/cpp/input_devices/BUILD.gn
@@ -2,22 +2,20 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-component("init") {
- output_name = "gl_init"
-
+source_set("input_devices") {
sources = [
- "gl_factory.cc",
- "gl_factory.h",
- "gl_init_export.h",
+ "input_device_client.cc",
+ "input_device_client.h",
]
- defines = [ "GL_INIT_IMPLEMENTATION" ]
deps = [
"//base",
- "//ui/gfx",
+ "//services/shell/public/cpp:sources",
+ "//skia",
+ "//ui/events/devices",
]
public_deps = [
- "//ui/gl",
+ "//components/mus/public/interfaces/input_devices",
]
}

Powered by Google App Engine
This is Rietveld 408576698