blob: 2c05f8d6fa6023347d76b6f0db9fe1cba3f3e8cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 2014 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.
# GYP version: mojo/mojo_converters.gypi:mojo_input_events_lib
component("input_events") {
sources = [
"input_events_type_converters.cc",
"mojo_extended_key_event_data.cc",
"mojo_extended_key_event_data.h",
"mojo_input_events_export.h",
]
defines = [ "MOJO_INPUT_EVENTS_IMPLEMENTATION" ]
deps = [
"//base",
"//ui/events",
"//ui/gfx/geometry",
"//mojo/converters/geometry",
"//mojo/environment:chromium",
"//third_party/mojo/src/mojo/public/c/system:for_component",
"//third_party/mojo_services/src/input_events/public/interfaces",
"//third_party/mojo_services/src/geometry/public/interfaces",
]
}
|