third_party_f2fs-tools/lib/BUILD.gn
y30045862 2ba6b2b207 f2fs-tools构建规范化整改
Signed-off-by: yangjingbo10 <yangjingbo10@huawei.com>

Change-Id: I1aae1cb27162594dae1e395f46fcf0833750e6d0
2023-06-21 09:25:04 +08:00

50 lines
974 B
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 = [
"-Wall",
"-Werror",
"-Wno-incompatible-pointer-types",
"-Wno-unused-function",
"-Wno-unused-parameter",
"-Wno-format",
]
}
config("libf2fs-headers") {
include_dirs = [
".",
"//third_party/f2fs-tools",
"//third_party/f2fs-tools/include",
]
}
ohos_shared_library("libf2fs") {
sources = [
"libf2fs.c",
"libf2fs_io.c",
"libf2fs_zoned.c",
"nls_utf8.c",
]
include_dirs = [ "." ]
configs = [
":f2fs-defaults",
":libf2fs-headers",
]
defines = [ "HAVE_CONFIG_H" ]
install_enable = true
subsystem_name = "thirdparty"
part_name = "f2fs-tools"
install_images = [
"system",
"updater",
]
}