| Index: ui/events/mojo/BUILD.gn
|
| diff --git a/ui/events/mojo/BUILD.gn b/ui/events/mojo/BUILD.gn
|
| index e9381cb0bea0f8600a18530e000a0178dc576e09..b9eaf2f9302d604fddef5971b59e7d2b669dcf8a 100644
|
| --- a/ui/events/mojo/BUILD.gn
|
| +++ b/ui/events/mojo/BUILD.gn
|
| @@ -2,6 +2,8 @@
|
| # 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")
|
| +
|
| # GYP version: mojo/mojo_converters.gypi:mojo_input_events_lib
|
| component("mojo") {
|
| output_name = "input_events"
|
| @@ -25,3 +27,24 @@ component("mojo") {
|
| "//ui/gfx/geometry/mojo",
|
| ]
|
| }
|
| +
|
| +mojom("interfaces") {
|
| + sources = [
|
| + "latency_info.mojom",
|
| + ]
|
| +
|
| + public_deps = [
|
| + "//mojo/common:common_custom_types",
|
| + ]
|
| +}
|
| +
|
| +mojom("test_interfaces") {
|
| + testonly = true
|
| + sources = [
|
| + "traits_test_service.mojom",
|
| + ]
|
| +
|
| + public_deps = [
|
| + ":interfaces",
|
| + ]
|
| +}
|
|
|