| OLD | NEW |
| (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 } |
| OLD | NEW |