third_party_f2fs-tools/fsck/BUILD.gn
tongkai0808fh 7840acd16e gn文件格式化
Signed-off-by: tongkai0808fh <tongkai5@huawei.com>
2024-05-28 20:34:11 +08:00

76 lines
1.5 KiB
Plaintext

# Copyright (c) 2021 Huawei Device Co., Ltd.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
import("//build/ohos.gni")
config("f2fs-defaults") {
cflags = [
"-Wno-pointer-sign",
"-Wno-unused-variable",
"-Wno-string-plus-int",
"-Wno-error=format",
"-Wno-unused-function",
"-Wno-unused-parameter",
"-Wno-incompatible-pointer-types",
]
}
###################################################
##Build fsck
ohos_executable("fsck.f2fs") {
configs = [ ":f2fs-defaults" ]
sources = [
"../tools/debug_tools/fsck_debug.c",
"compress.c",
"defrag.c",
"dict.c",
"dir.c",
"dump.c",
"fsck.c",
"main.c",
"mkquota.c",
"mount.c",
"node.c",
"quotaio.c",
"quotaio_tree.c",
"quotaio_v2.c",
"resize.c",
"segment.c",
"sload.c",
"xattr.c",
]
include_dirs = [
".",
"../tools/debug_tools",
"//third_party/f2fs-tools",
"//third_party/f2fs-tools/include",
"//third_party/f2fs-tools/lib",
]
deps = [ "//third_party/f2fs-tools/lib:libf2fs" ]
public_external_deps = [
"e2fsprogs:e2fsdroid",
"e2fsprogs:libdacconfig",
]
defines = [ "HAVE_CONFIG_H" ]
symlink_target_name = [
"resize.f2fs",
"sload.f2fs",
]
install_enable = true
subsystem_name = "thirdparty"
part_name = "f2fs-tools"
install_images = [
"system",
"updater",
]
}