Paul Keith | 5b3bd86 | 2019-01-08 23:45:03 +0100 | [diff] [blame] | 1 | // 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 Keith | 2b27b27 | 2019-01-09 00:11:40 +0100 | [diff] [blame] | 15 | cc_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 Keith | 5b3bd86 | 2019-01-08 23:45:03 +0100 | [diff] [blame] | 19 | 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 Keith | 2b27b27 | 2019-01-09 00:11:40 +0100 | [diff] [blame] | 28 | "service.cpp" |
Paul Keith | 5b3bd86 | 2019-01-08 23:45:03 +0100 | [diff] [blame] | 29 | ], |
| 30 | shared_libs: [ |
Paul Keith | 2b27b27 | 2019-01-09 00:11:40 +0100 | [diff] [blame] | 31 | "libbase", |
| 32 | "libbinder", |
Paul Keith | 5b3bd86 | 2019-01-08 23:45:03 +0100 | [diff] [blame] | 33 | "libhidlbase", |
| 34 | "libhidltransport", |
| 35 | "libutils", |
| 36 | "vendor.lineage.touch@1.0", |
| 37 | ], |
| 38 | } |