1# Copyright (c) 2023 Huawei Device Co., Ltd. 2# Licensed under the Apache License, Version 2.0 (the "License"); 3# you may not use this file except in compliance with the License. 4# You may obtain a copy of the License at 5# 6# http://www.apache.org/licenses/LICENSE-2.0 7# 8# Unless required by applicable law or agreed to in writing, software 9# distributed under the License is distributed on an "AS IS" BASIS, 10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11# See the License for the specific language governing permissions and 12# limitations under the License. 13 14import("//build/ohos.gni") 15 16ohos_prebuilt_shared_library("uinput_touch_util") { 17 source = "lib/libuinput_touch_util.z.so" 18 deps = [ "../../../hdf_core/adapter/uhdf2/utils:libhdf_utils" ] 19 install_enable = true 20 install_images = [ chipset_base_dir ] 21 subsystem_name = "hdf" 22 part_name = "drivers_peripheral_input" 23} 24 25ohos_prebuilt_shared_library("uinput_touch") { 26 source = "lib/libuinput_touch.z.so" 27 deps = [ 28 ":uinput_touch_util", 29 "../../../hdf_core/adapter/uhdf2/utils:libhdf_utils", 30 ] 31 install_enable = true 32 install_images = [ chipset_base_dir ] 33 subsystem_name = "hdf" 34 part_name = "drivers_peripheral_input" 35} 36 37ohos_prebuilt_shared_library("uinput_touch_chip") { 38 source = "lib/libuinput_touch_chip.z.so" 39 deps = [ 40 ":uinput_touch", 41 ":uinput_touch_util", 42 "../../../hdf_core/adapter/uhdf2/utils:libhdf_utils", 43 ] 44 install_enable = true 45 install_images = [ chipset_base_dir ] 46 subsystem_name = "hdf" 47 part_name = "drivers_peripheral_input" 48} 49 50group("uinput_group") { 51 deps = [ 52 ":uinput_touch", 53 ":uinput_touch_chip", 54 ] 55} 56