blob: 0197b6cb6783b4bd4e2bcfba345b24e4a3851f1d [file] [log] [blame]
Paul Keith5b3bd862019-01-08 23:45:03 +01001// Copyright (C) 2019 The LineageOS 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
Paul Keith2b27b272019-01-09 00:11:40 +010015cc_binary {
16 name: "vendor.lineage.touch@1.0-service.samsung",
17 init_rc: ["vendor.lineage.touch@1.0-service.samsung.rc"],
18 defaults: ["hidl_defaults"],
Paul Keith5b3bd862019-01-08 23:45:03 +010019 relative_install_path: "hw",
20 // FIXME: this should be 'vendor: true' for modules that will eventually be
21 // on AOSP.
22 proprietary: true,
23 srcs: [
24 "GloveMode.cpp",
25 "KeyDisabler.cpp",
26 "StylusMode.cpp",
27 "TouchscreenGesture.cpp",
Paul Keith2b27b272019-01-09 00:11:40 +010028 "service.cpp"
Paul Keith5b3bd862019-01-08 23:45:03 +010029 ],
30 shared_libs: [
Paul Keith2b27b272019-01-09 00:11:40 +010031 "libbase",
32 "libbinder",
Paul Keith5b3bd862019-01-08 23:45:03 +010033 "libhidlbase",
34 "libhidltransport",
35 "libutils",
36 "vendor.lineage.touch@1.0",
37 ],
38}