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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//mojo/public/tools/bindings/mojom.gni")
6
7 mojom("interfaces") {
8 sources = [
9 "input_device_service.mojom",
10 ]
11 }
12
13 source_set("client") {
14 sources = [
15 "input_device_client.cc",
16 "input_device_client.h",
17 ]
18
19 deps = [
20 "//base",
21 "//services/shell/public/cpp:sources",
22 "//skia",
23 "//ui/events/devices",
24 ]
25
26 public_deps = [
27 ":interfaces",
28 ]
29 }
30
31 source_set("server") {
32 sources = [
33 "input_device_server.cc",
34 "input_device_server.h",
35 ]
36
37 deps = [
38 "//base",
39 "//services/shell/public/cpp:sources",
40 "//skia",
41 "//ui/events/devices",
42 ]
43
44 public_deps = [
45 ":interfaces",
46 ]
47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698