blob: bf7b4f8d7aa277a94e62fbff2b9575d45fed0c8d [file] [log] [blame]
# 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("//testing/test.gni")
source_set("input_devices") {
sources = [
"input_device_server.cc",
"input_device_server.h",
]
deps = [
"//base",
"//services/service_manager/public/cpp",
"//ui/events/devices",
]
public_deps = [
"//services/ui/public/interfaces/input_devices",
]
}
test("input_device_unittests") {
testonly = true
sources = [
"input_device_unittests.cc",
]
deps = [
":input_devices",
"//base",
"//base/test:test_support",
"//mojo/edk/test:run_all_unittests",
"//services/service_manager/public/cpp",
"//services/service_manager/public/cpp:service_test_support",
"//services/ui/public/cpp/input_devices",
"//services/ui/public/interfaces/input_devices",
"//testing/gtest",
"//ui/events/devices",
]
}