mirror of
https://github.com/openharmony/third_party_gptfdisk.git
synced 2026-07-01 13:17:25 -04:00
50fa81f9b5
Signed-off-by: jiangqianrong <jiangqianrong1@huawei.com>
86 lines
1.7 KiB
Plaintext
86 lines
1.7 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 as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
import("//build/ohos.gni")
|
|
import("//build/ohos/ndk/ndk.gni")
|
|
|
|
config("gptdisk_config") {
|
|
cflags_cc = [
|
|
"-Wall",
|
|
"-D_FILE_OFFSET_BITS=64",
|
|
"-Wno-unused-parameter",
|
|
"-Wno-pragma-pack",
|
|
"-Wno-error=header-hygiene",
|
|
"-Wno-register",
|
|
"-Wno-unused-but-set-variable",
|
|
]
|
|
include_dirs = [
|
|
"ohos/include",
|
|
]
|
|
}
|
|
ohos_executable("sgdisk") {
|
|
install_enable = true
|
|
sources = [
|
|
"attributes.cc",
|
|
"basicmbr.cc",
|
|
"bsd.cc",
|
|
"crc32.cc",
|
|
"diskio-unix.cc",
|
|
"diskio.cc",
|
|
"gpt.cc",
|
|
"gptcl.cc",
|
|
"gptpart.cc",
|
|
"guid.cc",
|
|
"mbr.cc",
|
|
"mbrpart.cc",
|
|
"parttypes.cc",
|
|
"sgdisk.cc",
|
|
"support.cc",
|
|
"ohos/src/libpart/libpart.cpp",
|
|
]
|
|
public_configs = [ ":gptdisk_config" ]
|
|
external_deps = [
|
|
"e2fsprogs:libext2_uuid",
|
|
"popt:popt_static",
|
|
]
|
|
subsystem_name = "thirdparty"
|
|
part_name = "gptfdisk"
|
|
install_images = [ "system" ]
|
|
}
|
|
|
|
ohos_executable("ohos_fixparts") {
|
|
install_enable = true
|
|
|
|
sources = [
|
|
"ohos/ohos_fixparts.cpp",
|
|
"ohos/ohos_mbr_helper.cpp",
|
|
"ohos/src/libpart/libpart.cpp",
|
|
]
|
|
|
|
sources += [
|
|
"basicmbr.cc",
|
|
"crc32.cc",
|
|
"diskio-unix.cc",
|
|
"diskio.cc",
|
|
"mbrpart.cc",
|
|
"support.cc",
|
|
]
|
|
|
|
include_dirs = [
|
|
".",
|
|
"//third_party/gptfdisk/",
|
|
]
|
|
|
|
public_configs = [ ":gptdisk_config" ]
|
|
|
|
external_deps = [ "e2fsprogs:libext2_uuid" ]
|
|
|
|
subsystem_name = "thirdparty"
|
|
part_name = "gptfdisk"
|
|
install_images = [ "system" ]
|
|
}
|