security_crypto_framework/frameworks/BUILD.gn
王静 9b9ecc5a60 独立编译问题整改
Signed-off-by: 王静 <wangjing561@huawei.com>
2024-10-26 16:59:17 +08:00

91 lines
2.4 KiB
Plaintext

# Copyright (C) 2022-2023 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("//base/security/crypto_framework/common/common.gni")
import("//base/security/crypto_framework/frameworks/frameworks.gni")
import("//build/ohos.gni")
config("framework_config") {
include_dirs = [
"../interfaces/inner_api/algorithm_parameter",
"../interfaces/inner_api/common",
"../interfaces/inner_api/crypto_operation",
"../interfaces/inner_api/key",
]
}
if (os_level == "standard") {
ohos_shared_library("crypto_framework_lib") {
branch_protector_ret = "pac_ret"
subsystem_name = "security"
innerapi_tags = [ "platformsdk" ]
part_name = "crypto_framework"
public_configs = [ ":framework_config" ]
include_dirs = framework_inc_path + crypto_framwork_common_inc_path
sources = framework_files
if (os_level == "standard") {
sanitize = {
cfi = true
cfi_cross_dso = true
debug = false
}
}
cflags = [
"-DHILOG_ENABLE",
"-fPIC",
"-Wall",
]
deps = [
"../common:crypto_plugin_common",
"../plugin:crypto_openssl_plugin_lib",
]
external_deps = [
"c_utils:utils",
"hilog:libhilog",
]
}
} else if (os_level == "mini") {
ohos_static_library("crypto_framework_lib") {
subsystem_name = "security"
part_name = "crypto_framework"
public_configs = [ ":framework_config" ]
include_dirs = framework_inc_lite_path + crypto_framwork_common_inc_path
sources = framework_lite_files
defines = [
"CRYPTO_MBEDTLS",
"MINI_HILOG_ENABLE",
]
deps = [
"../common:crypto_common_lite",
"../plugin:crypto_mbedtls_plugin_lib",
]
configs = [ "${product_path}:product_public_configs" ]
cflags = [
"--diag_suppress",
"Pe188,Pe186",
]
external_deps = [ "hilog_lite:hilog_lite" ]
}
}