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

Unified Diff: components/input_device_service/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: Clean up/move files. Created 4 years, 7 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/input_device_service/BUILD.gn
diff --git a/components/input_device_service/BUILD.gn b/components/input_device_service/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..8471a988613cbcc415d776ad9c44d18e07ccf2f3
--- /dev/null
+++ b/components/input_device_service/BUILD.gn
@@ -0,0 +1,47 @@
+# 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("//mojo/public/tools/bindings/mojom.gni")
+
+mojom("interfaces") {
+ sources = [
+ "input_device_service.mojom",
+ ]
+}
+
+source_set("client") {
+ sources = [
+ "input_device_client.cc",
+ "input_device_client.h",
+ ]
+
+ deps = [
+ "//base",
+ "//services/shell/public/cpp:sources",
+ "//skia",
+ "//ui/events/devices",
+ ]
+
+ public_deps = [
+ ":interfaces",
+ ]
+}
+
+source_set("server") {
+ sources = [
+ "input_device_server.cc",
+ "input_device_server.h",
+ ]
+
+ deps = [
+ "//base",
+ "//services/shell/public/cpp:sources",
+ "//skia",
+ "//ui/events/devices",
+ ]
+
+ public_deps = [
+ ":interfaces",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698