blob: 88d6033ed9fbc41cbe173dd666b5cd39a71afa66 [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",
19 "SpriteController.cpp",
20 ],
21
22 shared_libs: [
Derek Sollenberger9ca5bbe2019-08-14 15:50:59 -040023 "libandroid_runtime",
Garfield Tan67e479a2019-08-05 16:47:40 -070024 "libbinder",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070025 "libcutils",
Derek Sollenbergeree538a32020-02-19 11:51:17 -050026 "libhwui",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070027 "liblog",
28 "libutils",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070029 "libgui",
30 "libui",
31 "libinput",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070032 "libnativewindow",
33 ],
34
Prabir Pradhane5696a52018-11-14 19:55:21 -080035 header_libs: [
36 "libinputflinger_headers",
37 ],
38
Colin Cross3fc8f2d2017-04-19 17:00:07 -070039 include_dirs: ["frameworks/native/services"],
40
41 cflags: [
42 "-Wall",
Siarhei Vishniakou80278762018-07-06 11:50:18 +010043 "-Wextra",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070044 "-Werror",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070045 ],
46
47}