mirror of
https://github.com/openharmony/third_party_libevdev.git
synced 2026-07-01 06:48:22 -04:00
7a8c8f60a8
Change-Id: I7166210d353e70c8bdc052497b10cfa792412971
36 lines
1.2 KiB
Plaintext
36 lines
1.2 KiB
Plaintext
# Copyright (c) 2024 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/ohos.gni")
|
|
|
|
gen_src_dir = "//third_party/libevdev"
|
|
gen_dst_dir = root_out_dir + "/diff_libevdev_mmi"
|
|
patches_root_dir = gen_src_dir + "/patch"
|
|
build_gn_dir = "$patches_root_dir/diff_libevdev_mmi/libevdev"
|
|
|
|
action("apply_patch") {
|
|
visibility = [ "*" ]
|
|
script = "${gen_src_dir}/patch/apply_patch.sh"
|
|
inputs = [ "$gen_src_dir" ]
|
|
outputs = [
|
|
"$gen_dst_dir/libevdev/libevdev-names.c",
|
|
"$gen_dst_dir/libevdev/libevdev-uinput.c",
|
|
"$gen_dst_dir/libevdev/libevdev.c",
|
|
]
|
|
|
|
args = [
|
|
rebase_path(gen_src_dir, root_build_dir),
|
|
rebase_path(gen_dst_dir, root_build_dir),
|
|
rebase_path(build_gn_dir, root_build_dir),
|
|
]
|
|
} |