10a7ce71fSopenharmony_ci# 20a7ce71fSopenharmony_ci# Copyright (c) 2021 Huawei Device Co., Ltd. 30a7ce71fSopenharmony_ci# Licensed under the Apache License, Version 2.0 (the "License"); 40a7ce71fSopenharmony_ci# you may not use this file except in compliance with the License. 50a7ce71fSopenharmony_ci# You may obtain a copy of the License at 60a7ce71fSopenharmony_ci# 70a7ce71fSopenharmony_ci# http://www.apache.org/licenses/LICENSE-2.0 80a7ce71fSopenharmony_ci# 90a7ce71fSopenharmony_ci# Unless required by applicable law or agreed to in writing, software 100a7ce71fSopenharmony_ci# distributed under the License is distributed on an "AS IS" BASIS, 110a7ce71fSopenharmony_ci# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 120a7ce71fSopenharmony_ci# See the License for the specific language governing permissions and 130a7ce71fSopenharmony_ci# limitations under the License. 140a7ce71fSopenharmony_ci# 150a7ce71fSopenharmony_ciimport("//build/lite/config/component/lite_component.gni") 160a7ce71fSopenharmony_ci 170a7ce71fSopenharmony_cishared_library("hal_pms") { 180a7ce71fSopenharmony_ci sources = [ "hal_pms.c" ] 190a7ce71fSopenharmony_ci cflags = [ "-Wall" ] 200a7ce71fSopenharmony_ci include_dirs = [ 210a7ce71fSopenharmony_ci "//base/security/permission_lite/services/pms/include/hals", 220a7ce71fSopenharmony_ci "//base/security/permission_lite/services/pms/include", 230a7ce71fSopenharmony_ci "//base/security/permission_lite/interfaces/kits", 240a7ce71fSopenharmony_ci "//base/hiviewdfx/interfaces/kits/hilog", 250a7ce71fSopenharmony_ci "//base/startup/init/interfaces/innerkits/include/syspara", 260a7ce71fSopenharmony_ci "//drivers/hdf_core/framework/include/platform", 270a7ce71fSopenharmony_ci "//drivers/hdf_core/framework/include/core", 280a7ce71fSopenharmony_ci "//drivers/hdf_core/framework/include/osal", 290a7ce71fSopenharmony_ci "//drivers/hdf_core/adapter/uhdf/posix/include", 300a7ce71fSopenharmony_ci "//drivers/hdf_core/framework/include/utils", 310a7ce71fSopenharmony_ci "//drivers/hdf_core/framework/include/config", 320a7ce71fSopenharmony_ci "//drivers/hdf_core/framework/include", 330a7ce71fSopenharmony_ci "//third_party/bounds_checking_function/include/", 340a7ce71fSopenharmony_ci ] 350a7ce71fSopenharmony_ci deps = [ 360a7ce71fSopenharmony_ci "//base/startup/init/interfaces/innerkits:libbegetutil", 370a7ce71fSopenharmony_ci "//drivers/hdf_core/adapter/uhdf/platform:hdf_platform", 380a7ce71fSopenharmony_ci "//third_party/bounds_checking_function:libsec_shared", 390a7ce71fSopenharmony_ci "//third_party/mbedtls:mbedtls_shared", 400a7ce71fSopenharmony_ci ] 410a7ce71fSopenharmony_ci} 42