# Copyright (c) 2025 Huawei Device Co., Ltd.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import("//build/config/components/ets_frontend/ets2abc_config.gni")
import("//build/ohos.gni")
import("//build/ohos/taihe_idl/taihe.gni")
import("//foundation/multimodalinput/input/multimodalinput_mini.gni")
copy_taihe_idl("input_event_client_taihe") {
sources = [ "idl/ohos.multimodalInput.inputEventClient.taihe" ]
deps = [
"${mmi_path}/frameworks/ets/mouse_event:mouse_event_taihe",
"${mmi_path}/frameworks/ets/touch_event:touch_event_taihe",
]
}
config("inputEventClient_config") {
visibility = [ ":*" ]
include_dirs = [
"${mmi_path}/util/common/include",
"${mmi_path}/tools/event_inject/include",
"${mmi_path}/interfaces/kits/c/input",
"${mmi_path}/interfaces/native/innerkits/proxy/include",
"${mmi_path}/frameworks/ets/input_event_client/include",
"${mmi_path}/frameworks/ets/common/include",
"${mmi_path}/frameworks/ets/key_code/include",
"${mmi_path}/frameworks/ets/mouse_event/include",
"${mmi_path}/frameworks/proxy/event_handler/include"
]
}
subsystem_name = "multimodalinput"
part_name = "input"
taihe_generated_file_path_inputEventClient =
"$taihe_file_path/out/$subsystem_name/$part_name/inputEventClient"
ohos_taihe("run_taihe") {
taihe_generated_file_path = "${taihe_generated_file_path_inputEventClient}"
deps = [ ":input_event_client_taihe" ]
outputs = [
"$taihe_generated_file_path/src/ohos.multimodalInput.inputEventClient.ani.cpp",
"$taihe_generated_file_path/src/ohos.multimodalInput.inputEventClient.abi.c",
]
}
taihe_shared_library("InputEventClient") {
taihe_generated_file_path = "${taihe_generated_file_path_inputEventClient}"
part_name = "$part_name"
subsystem_name = "$subsystem_name"
sources = get_target_outputs(":run_taihe")
configs = [
"${mmi_path}:coverage_flags",
":inputEventClient_config",
]
sources += [
"${mmi_path}/frameworks/ets/common/src/ani_common.cpp",
"src/ani_constructor.cpp",
"src/ohos.multimodalInput.inputEventClient.impl.cpp",
]
deps = [
":run_taihe",
"${mmi_path}/frameworks/native/input:oh_input_manager",
"${mmi_path}/frameworks/proxy:libmmi-client",
"${mmi_path}/util:libmmi-util",
"${mmi_path}/frameworks/ets/mouse_event:MouseEvent",
"${mmi_path}/frameworks/ets/key_code:KeyCode",
]
external_deps = [
"access_token:libaccesstoken_sdk",
"access_token:libtokenid_sdk",
"c_utils:utils",
"hilog:libhilog",
"ipc:ipc_core",
# "ipc:ipc_single",
]
if (input_feature_api_metrics_histogram) {
external_deps += [ "api_metrics:histogrammanager" ]
}
branch_protector_ret = "pac_ret"
sanitize = {
integer_overflow = true
ubsan = true
boundary_sanitize = true
cfi = true
cfi_cross_dso = true
debug = false
}
}
generate_static_abc("input_event_client") {
base_url = "${taihe_generated_file_path_inputEventClient}"
files = [ "${taihe_generated_file_path_inputEventClient}/@ohos.multimodalInput.inputEventClient.ets" ]
is_boot_abc = "True"
device_dst_file = "/system/framework/input_event_client.abc"
dependencies = [ ":run_taihe" ]
}
ohos_prebuilt_etc("input_event_client_etc") {
source = "$target_out_dir/input_event_client.abc"
module_install_dir = "framework"
part_name = "$part_name"
subsystem_name = "$subsystem_name"
deps = [ ":input_event_client" ]
}
generate_static_abc("input_input_event_client_taihe_test") {
base_url = "${mmi_path}/frameworks/ets/input_event_client"
files = [ "$base_url/test/test_main.ets" ]
is_boot_abc = "True"
device_dst_file = "/system/framework/input_event_client_test.abc"
}
group("ets_inputEventClient_package") {
deps = [
":InputEventClient",
":input_event_client_etc",
]
}