37 lines
1.8 KiB
Plaintext
37 lines
1.8 KiB
Plaintext
# Copyright (C) 2021-2022 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")
|
|
|
|
if (os_level == "standard") {
|
|
group("huks_standard_frameworks") {
|
|
public_deps = [
|
|
"//base/security/huks/frameworks/huks_standard/main/common:libhuks_common_standard_static",
|
|
"//base/security/huks/frameworks/huks_standard/main/core:libhuks_core_standard_static",
|
|
"//base/security/huks/frameworks/huks_standard/main/crypto_engine:libhuks_crypto_engine_standard_static",
|
|
"//base/security/huks/frameworks/huks_standard/main/os_dependency:libhuks_mem_standard_static",
|
|
"//base/security/huks/frameworks/huks_standard/main/os_dependency:libhuks_os_dependency_standard_static",
|
|
"//base/security/huks/frameworks/huks_standard/main/os_dependency:libhuks_util_standard_static",
|
|
]
|
|
}
|
|
} else {
|
|
group("huks_small_frameworks") {
|
|
public_deps = [
|
|
"//base/security/huks/frameworks/huks_standard/main/common:libhuks_common_small_static",
|
|
"//base/security/huks/frameworks/huks_standard/main/core:libhuks_core_small_static",
|
|
"//base/security/huks/frameworks/huks_standard/main/crypto_engine:libhuks_crypto_engine_small_static",
|
|
"//base/security/huks/frameworks/huks_standard/main/os_dependency:libhuks_os_dependency_small_static",
|
|
]
|
|
}
|
|
}
|