blob: 5252cd041199245e58385bb4926185ea0e017182 [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",
Garfield Tan19a44bc2020-05-28 14:31:29 -070020 "SpriteIcon.cpp",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070021 ],
22
23 shared_libs: [
Derek Sollenberger9ca5bbe2019-08-14 15:50:59 -040024 "libandroid_runtime",
Garfield Tan67e479a2019-08-05 16:47:40 -070025 "libbinder",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070026 "libcutils",
Derek Sollenbergeree538a32020-02-19 11:51:17 -050027 "libhwui",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070028 "liblog",
29 "libutils",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070030 "libgui",
31 "libui",
32 "libinput",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070033 "libnativewindow",
34 ],
35
Prabir Pradhane5696a52018-11-14 19:55:21 -080036 header_libs: [
37 "libinputflinger_headers",
38 ],
39
Colin Cross3fc8f2d2017-04-19 17:00:07 -070040 include_dirs: ["frameworks/native/services"],
41
42 cflags: [
43 "-Wall",
Siarhei Vishniakou80278762018-07-06 11:50:18 +010044 "-Wextra",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070045 "-Werror",
Colin Cross3fc8f2d2017-04-19 17:00:07 -070046 ],
47
48}