mirror of
https://github.com/openharmony/miscservices_screenlock.git
synced 2026-07-25 14:45:31 -04:00
4666cd1222
Signed-off-by: illybyy <baoyayong@huawei.com> Change-Id: I5736a2b803b1d1ad708ce57af10922d8f0b83a49
50 lines
1.5 KiB
Plaintext
50 lines
1.5 KiB
Plaintext
# Copyright (C) 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")
|
|
|
|
config("screenlock_utils_config") {
|
|
visibility = [ ":*" ]
|
|
include_dirs = [
|
|
"include",
|
|
"//utils/native/base/include",
|
|
]
|
|
|
|
cflags_cc = [ "-fexceptions" ]
|
|
}
|
|
ohos_shared_library("screenlock_utils") {
|
|
sources = [ "src/screenlock_bundlename.cpp" ]
|
|
|
|
public_configs = [ ":screenlock_utils_config" ]
|
|
|
|
include_dirs = [ "//utils/native/base/include" ]
|
|
|
|
deps = [
|
|
"//foundation/distributedschedule/safwk/interfaces/innerkits/safwk:system_ability_fwk",
|
|
"//foundation/distributedschedule/samgr/interfaces/innerkits/samgr_proxy:samgr_proxy",
|
|
"//utils/native/base:utils",
|
|
]
|
|
external_deps = [
|
|
"ability_base:base",
|
|
"ability_base:want",
|
|
"bundle_framework:appexecfwk_base",
|
|
"bundle_framework:appexecfwk_core",
|
|
"common_event_service:cesfwk_services",
|
|
"hiviewdfx_hilog_native:libhilog",
|
|
"ipc:ipc_core",
|
|
]
|
|
relative_install_dir = "module"
|
|
subsystem_name = "theme"
|
|
part_name = "screenlock_mgr"
|
|
}
|