| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 source_set("input_devices") { | 5 source_set("cpp") { |
| 6 sources = [ | 6 sources = [ |
| 7 "input_device_client.cc", | 7 "pref_observer_store.cc", |
| 8 "input_device_client.h", | 8 "pref_observer_store.h", |
| 9 ] |
| 10 |
| 11 public_deps = [ |
| 12 "//base", |
| 13 "//components/prefs:prefs", |
| 14 "//services/preferences/public/interfaces", |
| 15 "//services/service_manager/public/cpp", |
| 9 ] | 16 ] |
| 10 | 17 |
| 11 deps = [ | 18 deps = [ |
| 12 "//base", | 19 "//mojo/public/cpp/bindings:bindings", |
| 13 "//services/service_manager/public/cpp", | |
| 14 "//ui/events/devices", | |
| 15 ] | |
| 16 | |
| 17 public_deps = [ | |
| 18 "//services/ui/public/interfaces/input_devices", | |
| 19 ] | 20 ] |
| 20 } | 21 } |
| OLD | NEW |