blob: b8c3a808f16b67b50b213b994acd2331d7ae3016 [file] [log] [blame]
Garfield Tan73007b62019-08-29 17:28:41 -07001// Copyright (C) 2019 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15cc_library_static {
16 name: "libinputdispatcher",
17 defaults: ["inputflinger_defaults"],
18 srcs: [
19 "Connection.cpp",
20 "Entry.cpp",
21 "InjectionState.cpp",
22 "InputDispatcher.cpp",
23 "InputDispatcherFactory.cpp",
24 "InputDispatcherThread.cpp",
25 "InputState.cpp",
26 "InputTarget.cpp",
27 "Monitor.cpp",
28 "TouchState.cpp"
29 ],
30 shared_libs: [
31 "libbase",
32 "libcutils",
33 "libinput",
34 "libinputreporter",
35 "libinputflinger_base",
36 "liblog",
37 "libui",
38 "libutils",
39 ],
40
41 export_include_dirs: ["include"],
42}