blob: dca35012cbdd32998cb504a563fc445db9e9c1e0 [file] [log] [blame]
Colin Cross3fc8f2d2017-04-19 17:00:07 -07001// Copyright (C) 2010 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_shared {
16 name: "libinputservice",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070017 srcs: [
18 "PointerController.cpp",
Liam Harringtonc782be62020-07-17 19:48:24 +000019 "PointerControllerContext.cpp",
20 "MouseCursorController.cpp",
21 "TouchSpotController.cpp",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070022 "SpriteController.cpp",
Garfield Tan19a44bc2020-05-28 14:31:29 -070023 "SpriteIcon.cpp",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070024 ],
25
26 shared_libs: [
Derek Sollenberger9ca5bbe2019-08-14 15:50:59 -040027 "libandroid_runtime",
Garfield Tan67e479a2019-08-05 16:47:40 -070028 "libbinder",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070029 "libcutils",
Derek Sollenbergeree538a32020-02-19 11:51:17 -050030 "libhwui",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070031 "liblog",
32 "libutils",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070033 "libgui",
34 "libui",
35 "libinput",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070036 "libnativewindow",
37 ],
38
Prabir Pradhane5696a52018-11-14 19:55:21 -080039 header_libs: [
40 "libinputflinger_headers",
41 ],
42
Colin Cross3fc8f2d2017-04-19 17:00:07 -070043 include_dirs: ["frameworks/native/services"],
44
45 cflags: [
46 "-Wall",
Siarhei Vishniakou80278762018-07-06 11:50:18 +010047 "-Wextra",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070048 "-Werror",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070049 ],
50
51}