diff --git a/frameworks/ets/gesture_event/BUILD.gn b/frameworks/ets/gesture_event/BUILD.gn index c9bf30bb2f8e679e045f473613ea339df6049e9f..0fc0bc98f6cc6ec819e5922237e6f1199b69959e 100644 --- a/frameworks/ets/gesture_event/BUILD.gn +++ b/frameworks/ets/gesture_event/BUILD.gn @@ -27,9 +27,9 @@ config("gestureEvent_config") { } subsystem_name = "multimodalinput" part_name = "input" -taihe_generated_file_path = "$taihe_file_path/out/$subsystem_name/$part_name" +taihe_generated_file_path_gestureEvent = "$taihe_file_path/out/$subsystem_name/$part_name/gestureEvent" ohos_taihe("run_taihe") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_gestureEvent}" deps = [ ":gesture_event_taihe" ] outputs = [ "$taihe_generated_file_path/src/ohos.multimodalInput.gestureEvent.ani.cpp", @@ -37,7 +37,7 @@ ohos_taihe("run_taihe") { ] } taihe_shared_library("GestureEvent") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_gestureEvent}" part_name = "$part_name" subsystem_name = "$subsystem_name" sources = get_target_outputs(":run_taihe") @@ -69,8 +69,8 @@ taihe_shared_library("GestureEvent") { } } generate_static_abc("gesture_event") { - base_url = "$taihe_generated_file_path" - files = [ "$taihe_generated_file_path/@ohos.multimodalInput.gestureEvent.ets" ] + base_url = "${taihe_generated_file_path_gestureEvent}" + files = [ "${taihe_generated_file_path_gestureEvent}/@ohos.multimodalInput.gestureEvent.ets" ] is_boot_abc = "True" device_dst_file = "/system/framework/gesture_event.abc" dependencies = [ ":run_taihe" ] diff --git a/frameworks/ets/input_consumer/BUILD.gn b/frameworks/ets/input_consumer/BUILD.gn index ae8023d3a4b1ee9d86927b05a7fa8a2f7a4da900..6977509744fafc5b65f389548732dd180e500433 100644 --- a/frameworks/ets/input_consumer/BUILD.gn +++ b/frameworks/ets/input_consumer/BUILD.gn @@ -29,9 +29,9 @@ config("inputConsumer_config") { } subsystem_name = "multimodalinput" part_name = "input" -taihe_generated_file_path = "$taihe_file_path/out/$subsystem_name/$part_name" +taihe_generated_file_path_inputConsumer = "$taihe_file_path/out/$subsystem_name/$part_name/inputConsumer" ohos_taihe("run_taihe") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_inputConsumer}" deps = [ ":input_consumer_taihe" ] outputs = [ "$taihe_generated_file_path/src/ohos.multimodalInput.inputConsumer.ani.cpp", @@ -39,7 +39,7 @@ ohos_taihe("run_taihe") { ] } taihe_shared_library("InputConsumer") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_inputConsumer}" part_name = "$part_name" subsystem_name = "$subsystem_name" sources = get_target_outputs(":run_taihe") @@ -75,8 +75,8 @@ taihe_shared_library("InputConsumer") { } } generate_static_abc("input_consumer") { - base_url = "$taihe_generated_file_path" - files = [ "$taihe_generated_file_path/@ohos.multimodalInput.inputConsumer.ets" ] + base_url = "${taihe_generated_file_path_inputConsumer}" + files = [ "${taihe_generated_file_path_inputConsumer}/@ohos.multimodalInput.inputConsumer.ets" ] is_boot_abc = "True" device_dst_file = "/system/framework/input_consumer.abc" dependencies = [ ":run_taihe" ] diff --git a/frameworks/ets/input_device/BUILD.gn b/frameworks/ets/input_device/BUILD.gn index 31de114cbda37e60b98842c3d38e0bd6bf3895ed..2992e60576e3aa5d7cdb4ff168b3b6e75541037d 100644 --- a/frameworks/ets/input_device/BUILD.gn +++ b/frameworks/ets/input_device/BUILD.gn @@ -28,9 +28,9 @@ config("inputDevice_config") { } subsystem_name = "multimodalinput" part_name = "input" -taihe_generated_file_path = "$taihe_file_path/out/$subsystem_name/$part_name" +taihe_generated_file_path_inputDevice = "$taihe_file_path/out/$subsystem_name/$part_name/inputDevice" ohos_taihe("run_taihe") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_inputDevice}" deps = [ ":input_device_taihe" ] outputs = [ "$taihe_generated_file_path/src/ohos.multimodalInput.inputDevice.ani.cpp", @@ -38,7 +38,7 @@ ohos_taihe("run_taihe") { ] } taihe_shared_library("InputDevice") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_inputDevice}" part_name = "$part_name" subsystem_name = "$subsystem_name" sources = get_target_outputs(":run_taihe") @@ -70,8 +70,8 @@ taihe_shared_library("InputDevice") { } } generate_static_abc("input_device") { - base_url = "$taihe_generated_file_path" - files = [ "$taihe_generated_file_path/@ohos.multimodalInput.inputDevice.ets" ] + base_url = "${taihe_generated_file_path_inputDevice}" + files = [ "${taihe_generated_file_path_inputDevice}/@ohos.multimodalInput.inputDevice.ets" ] is_boot_abc = "True" device_dst_file = "/system/framework/input_device.abc" dependencies = [ ":run_taihe" ] diff --git a/frameworks/ets/input_event/BUILD.gn b/frameworks/ets/input_event/BUILD.gn index 8672885a34f08129a8ebddfab79b8c360f384f88..d5452f765de16611da55c42bea26dec6a3aaa494 100644 --- a/frameworks/ets/input_event/BUILD.gn +++ b/frameworks/ets/input_event/BUILD.gn @@ -18,9 +18,9 @@ copy_taihe_idl("input_event_taihe") { } subsystem_name = "multimodalinput" part_name = "input" -taihe_generated_file_path = "$taihe_file_path/out/$subsystem_name/$part_name" +taihe_generated_file_path_inputEvent = "$taihe_file_path/out/$subsystem_name/$part_name/inputEvent" ohos_taihe("run_taihe") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_inputEvent}" deps = [ ":input_event_taihe" ] outputs = [ "$taihe_generated_file_path/src/ohos.multimodalInput.inputEvent.ani.cpp", @@ -28,8 +28,8 @@ ohos_taihe("run_taihe") { ] } generate_static_abc("input_event") { - base_url = "$taihe_generated_file_path" - files = [ "$taihe_generated_file_path/@ohos.multimodalInput.inputEvent.ets" ] + base_url = "${taihe_generated_file_path_inputEvent}" + files = [ "${taihe_generated_file_path_inputEvent}/@ohos.multimodalInput.inputEvent.ets" ] is_boot_abc = "True" device_dst_file = "/system/framework/input_event.abc" dependencies = [ ":run_taihe" ] diff --git a/frameworks/ets/input_event_client/BUILD.gn b/frameworks/ets/input_event_client/BUILD.gn index 2c2301a33e72fc87936d55f8344cd50da73e93ff..d7cca9bf15d70861fa12d3c693e9c742922f4e37 100644 --- a/frameworks/ets/input_event_client/BUILD.gn +++ b/frameworks/ets/input_event_client/BUILD.gn @@ -29,9 +29,9 @@ config("inputEventClient_config") { } subsystem_name = "multimodalinput" part_name = "input" -taihe_generated_file_path = "$taihe_file_path/out/$subsystem_name/$part_name" +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" + 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", @@ -39,7 +39,7 @@ ohos_taihe("run_taihe") { ] } taihe_shared_library("InputEventClient") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_inputEventClient}" part_name = "$part_name" subsystem_name = "$subsystem_name" sources = get_target_outputs(":run_taihe") @@ -71,8 +71,8 @@ taihe_shared_library("InputEventClient") { } } generate_static_abc("input_event_client") { - base_url = "$taihe_generated_file_path" - files = [ "$taihe_generated_file_path/@ohos.multimodalInput.inputEventClient.ets" ] + 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" ] diff --git a/frameworks/ets/input_monitor/BUILD.gn b/frameworks/ets/input_monitor/BUILD.gn index f0c3329583e6b43da69b71dde8b038a6c215fee6..d7c1f0e278b2ba60773a927cea3446d11ec544f0 100644 --- a/frameworks/ets/input_monitor/BUILD.gn +++ b/frameworks/ets/input_monitor/BUILD.gn @@ -31,9 +31,9 @@ config("inputMonitor_config") { } subsystem_name = "multimodalinput" part_name = "input" -taihe_generated_file_path = "$taihe_file_path/out/$subsystem_name/$part_name" +taihe_generated_file_path_inputMonitor = "$taihe_file_path/out/$subsystem_name/$part_name/inputMonitor" ohos_taihe("run_taihe") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_inputMonitor}" deps = [ ":input_monitor_taihe" ] outputs = [ "$taihe_generated_file_path/src/ohos.multimodalInput.inputMonitor.ani.cpp", @@ -41,7 +41,7 @@ ohos_taihe("run_taihe") { ] } taihe_shared_library("InputMonitor") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_inputMonitor}" part_name = "$part_name" subsystem_name = "$subsystem_name" sources = get_target_outputs(":run_taihe") @@ -73,8 +73,8 @@ taihe_shared_library("InputMonitor") { } } generate_static_abc("input_moniter") { - base_url = "$taihe_generated_file_path" - files = [ "$taihe_generated_file_path/@ohos.multimodalInput.inputMonitor.ets" ] + base_url = "${taihe_generated_file_path_inputMonitor}" + files = [ "${taihe_generated_file_path_inputMonitor}/@ohos.multimodalInput.inputMonitor.ets" ] is_boot_abc = "True" device_dst_file = "/system/framework/input_moniter.abc" dependencies = [ ":run_taihe" ] diff --git a/frameworks/ets/intention_code/BUILD.gn b/frameworks/ets/intention_code/BUILD.gn index f11aa8cf3522b627a065a9532030d096883180f7..97a5ef2a3005d59945d24787e7a88cafa63702c4 100644 --- a/frameworks/ets/intention_code/BUILD.gn +++ b/frameworks/ets/intention_code/BUILD.gn @@ -26,9 +26,9 @@ config("intentionCode_config") { } subsystem_name = "multimodalinput" part_name = "input" -taihe_generated_file_path = "$taihe_file_path/out/$subsystem_name/$part_name" +taihe_generated_file_path_intentionCode = "$taihe_file_path/out/$subsystem_name/$part_name/intentionCode" ohos_taihe("run_taihe") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_intentionCode}" deps = [ ":intention_code_taihe" ] outputs = [ "$taihe_generated_file_path/src/ohos.multimodalInput.intentionCode.ani.cpp", @@ -36,7 +36,7 @@ ohos_taihe("run_taihe") { ] } taihe_shared_library("IntentionCode") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_intentionCode}" part_name = "$part_name" subsystem_name = "$subsystem_name" sources = get_target_outputs(":run_taihe") @@ -68,8 +68,8 @@ taihe_shared_library("IntentionCode") { } } generate_static_abc("intention_code") { - base_url = "$taihe_generated_file_path" - files = [ "$taihe_generated_file_path/@ohos.multimodalInput.intentionCode.ets" ] + base_url = "${taihe_generated_file_path_intentionCode}" + files = [ "${taihe_generated_file_path_intentionCode}/@ohos.multimodalInput.intentionCode.ets" ] is_boot_abc = "True" device_dst_file = "/system/framework/intention_code.abc" dependencies = [ ":run_taihe" ] diff --git a/frameworks/ets/key_code/BUILD.gn b/frameworks/ets/key_code/BUILD.gn index 6a9a15106b3218277a476dfe1936630c95574327..5a5b656db06bc415eed7fa2d699d30ca1b2ad213 100644 --- a/frameworks/ets/key_code/BUILD.gn +++ b/frameworks/ets/key_code/BUILD.gn @@ -28,9 +28,9 @@ config("keyCode_config") { } subsystem_name = "multimodalinput" part_name = "input" -taihe_generated_file_path = "$taihe_file_path/out/$subsystem_name/$part_name" +taihe_generated_file_path_keyCode = "$taihe_file_path/out/$subsystem_name/$part_name/keyCode" ohos_taihe("run_taihe") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_keyCode}" deps = [ ":key_code_taihe" ] outputs = [ "$taihe_generated_file_path/src/ohos.multimodalInput.keyCode.ani.cpp", @@ -38,7 +38,7 @@ ohos_taihe("run_taihe") { ] } taihe_shared_library("KeyCode") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_keyCode}" part_name = "$part_name" subsystem_name = "$subsystem_name" sources = get_target_outputs(":run_taihe") @@ -70,8 +70,8 @@ taihe_shared_library("KeyCode") { } } generate_static_abc("key_code") { - base_url = "$taihe_generated_file_path" - files = [ "$taihe_generated_file_path/@ohos.multimodalInput.keyCode.ets" ] + base_url = "${taihe_generated_file_path_keyCode}" + files = [ "${taihe_generated_file_path_keyCode}/@ohos.multimodalInput.keyCode.ets" ] is_boot_abc = "True" device_dst_file = "/system/framework/key_code.abc" dependencies = [ ":run_taihe" ] diff --git a/frameworks/ets/key_event/BUILD.gn b/frameworks/ets/key_event/BUILD.gn index 031faeee4625e6ee6409ae02ccc277f04bc8431d..a6d3dc7ccb3e9a4acc70318e11d450d46e441ff3 100644 --- a/frameworks/ets/key_event/BUILD.gn +++ b/frameworks/ets/key_event/BUILD.gn @@ -32,9 +32,9 @@ config("keyEvent_config") { } subsystem_name = "multimodalinput" part_name = "input" -taihe_generated_file_path = "$taihe_file_path/out/$subsystem_name/$part_name" +taihe_generated_file_path_keyEvent = "$taihe_file_path/out/$subsystem_name/$part_name/keyEvent" ohos_taihe("run_taihe") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_keyEvent}" deps = [ ":key_event_taihe" ] outputs = [ "$taihe_generated_file_path/src/ohos.multimodalInput.keyEvent.ani.cpp", @@ -42,7 +42,7 @@ ohos_taihe("run_taihe") { ] } taihe_shared_library("KeyEvent") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_keyEvent}" part_name = "$part_name" subsystem_name = "$subsystem_name" sources = get_target_outputs(":run_taihe") @@ -74,8 +74,8 @@ taihe_shared_library("KeyEvent") { } } generate_static_abc("key_event") { - base_url = "$taihe_generated_file_path" - files = [ "$taihe_generated_file_path/@ohos.multimodalInput.keyEvent.ets" ] + base_url = "${taihe_generated_file_path_keyEvent}" + files = [ "${taihe_generated_file_path_keyEvent}/@ohos.multimodalInput.keyEvent.ets" ] is_boot_abc = "True" device_dst_file = "/system/framework/key_event.abc" dependencies = [ ":run_taihe" ] diff --git a/frameworks/ets/mouse_event/BUILD.gn b/frameworks/ets/mouse_event/BUILD.gn index 291620e20bfa2c3af959d9b28d71c7269f1f689d..a77072701eaf58d26fcadbe02a4dd37311f02d9a 100644 --- a/frameworks/ets/mouse_event/BUILD.gn +++ b/frameworks/ets/mouse_event/BUILD.gn @@ -27,9 +27,9 @@ config("mouseEvent_config") { } subsystem_name = "multimodalinput" part_name = "input" -taihe_generated_file_path = "$taihe_file_path/out/$subsystem_name/$part_name" +taihe_generated_file_path_mouseEvent = "$taihe_file_path/out/$subsystem_name/$part_name/mouseEvent" ohos_taihe("run_taihe") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_mouseEvent}" deps = [ ":mouse_event_taihe" ] outputs = [ "$taihe_generated_file_path/src/ohos.multimodalInput.mouseEvent.ani.cpp", @@ -37,7 +37,7 @@ ohos_taihe("run_taihe") { ] } taihe_shared_library("MouseEvent") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_mouseEvent}" part_name = "$part_name" subsystem_name = "$subsystem_name" sources = get_target_outputs(":run_taihe") @@ -69,8 +69,8 @@ taihe_shared_library("MouseEvent") { } } generate_static_abc("mouse_event") { - base_url = "$taihe_generated_file_path" - files = [ "$taihe_generated_file_path/@ohos.multimodalInput.mouseEvent.ets" ] + base_url = "${taihe_generated_file_path_mouseEvent}" + files = [ "${taihe_generated_file_path_mouseEvent}/@ohos.multimodalInput.mouseEvent.ets" ] is_boot_abc = "True" device_dst_file = "/system/framework/mouse_event.abc" dependencies = [ ":run_taihe" ] diff --git a/frameworks/ets/pointer/BUILD.gn b/frameworks/ets/pointer/BUILD.gn index b3261d4c39804a3982c3b9247d6bcf28769cf505..bd267e248df29845024a06130e51e3f307b54dec 100644 --- a/frameworks/ets/pointer/BUILD.gn +++ b/frameworks/ets/pointer/BUILD.gn @@ -28,9 +28,9 @@ config("pointer_config") { } subsystem_name = "multimodalinput" part_name = "input" -taihe_generated_file_path = "$taihe_file_path/out/$subsystem_name/$part_name" +taihe_generated_file_path_pointer = "$taihe_file_path/out/$subsystem_name/$part_name/pointer" ohos_taihe("run_taihe") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_pointer}" deps = [ ":pointer_taihe" ] outputs = [ "$taihe_generated_file_path/src/ohos.multimodalInput.pointer.ani.cpp", @@ -38,7 +38,7 @@ ohos_taihe("run_taihe") { ] } taihe_shared_library("Pointer") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_pointer}" part_name = "$part_name" subsystem_name = "$subsystem_name" sources = get_target_outputs(":run_taihe") @@ -70,8 +70,8 @@ taihe_shared_library("Pointer") { } } generate_static_abc("pointer") { - base_url = "$taihe_generated_file_path" - files = [ "$taihe_generated_file_path/@ohos.multimodalInput.pointer.ets" ] + base_url = "${taihe_generated_file_path_pointer}" + files = [ "${taihe_generated_file_path_pointer}/@ohos.multimodalInput.pointer.ets" ] is_boot_abc = "True" device_dst_file = "/system/framework/pointer.abc" dependencies = [ ":run_taihe" ] diff --git a/frameworks/ets/short_key/BUILD.gn b/frameworks/ets/short_key/BUILD.gn index c6d0e22fcc2cbe0f452efde46e1b247a1b78efb7..f3bf3d6ebbfeeb089d05fad7717a72f409bc2d03 100644 --- a/frameworks/ets/short_key/BUILD.gn +++ b/frameworks/ets/short_key/BUILD.gn @@ -26,9 +26,9 @@ config("shortKey_config") { } subsystem_name = "multimodalinput" part_name = "input" -taihe_generated_file_path = "$taihe_file_path/out/$subsystem_name/$part_name" +taihe_generated_file_path_shortKey = "$taihe_file_path/out/$subsystem_name/$part_name/shortKey" ohos_taihe("run_taihe") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_shortKey}" deps = [ ":short_key_taihe" ] outputs = [ "$taihe_generated_file_path/src/ohos.multimodalInput.shortKey.ani.cpp", @@ -36,7 +36,7 @@ ohos_taihe("run_taihe") { ] } taihe_shared_library("ShortKey") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_shortKey}" part_name = "$part_name" subsystem_name = "$subsystem_name" sources = get_target_outputs(":run_taihe") @@ -68,8 +68,8 @@ taihe_shared_library("ShortKey") { } } generate_static_abc("short_key") { - base_url = "$taihe_generated_file_path" - files = [ "$taihe_generated_file_path/@ohos.multimodalInput.shortKey.ets" ] + base_url = "${taihe_generated_file_path_shortKey}" + files = [ "${taihe_generated_file_path_shortKey}/@ohos.multimodalInput.shortKey.ets" ] is_boot_abc = "True" device_dst_file = "/system/framework/short_key.abc" dependencies = [ ":run_taihe" ] diff --git a/frameworks/ets/touch_event/BUILD.gn b/frameworks/ets/touch_event/BUILD.gn index dd03bd121f9b808d9d2a1a18e3904ea4bf370182..0d00cbaae515e4c8962c86c27ec5a59831615fe2 100644 --- a/frameworks/ets/touch_event/BUILD.gn +++ b/frameworks/ets/touch_event/BUILD.gn @@ -27,9 +27,9 @@ config("touchEvent_config") { } subsystem_name = "multimodalinput" part_name = "input" -taihe_generated_file_path = "$taihe_file_path/out/$subsystem_name/$part_name" +taihe_generated_file_path_touchEvent = "$taihe_file_path/out/$subsystem_name/$part_name/touchEvent" ohos_taihe("run_taihe") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_touchEvent}" deps = [ ":touch_event_taihe" ] outputs = [ "$taihe_generated_file_path/src/ohos.multimodalInput.touchEvent.ani.cpp", @@ -37,7 +37,7 @@ ohos_taihe("run_taihe") { ] } taihe_shared_library("TouchEvent") { - taihe_generated_file_path = "$taihe_generated_file_path" + taihe_generated_file_path = "${taihe_generated_file_path_touchEvent}" part_name = "$part_name" subsystem_name = "$subsystem_name" sources = get_target_outputs(":run_taihe") @@ -69,8 +69,8 @@ taihe_shared_library("TouchEvent") { } } generate_static_abc("touch_event") { - base_url = "$taihe_generated_file_path" - files = [ "$taihe_generated_file_path/@ohos.multimodalInput.touchEvent.ets" ] + base_url = "${taihe_generated_file_path_touchEvent}" + files = [ "${taihe_generated_file_path_touchEvent}/@ohos.multimodalInput.touchEvent.ets" ] is_boot_abc = "True" device_dst_file = "/system/framework/touch_event.abc" dependencies = [ ":run_taihe" ]