Files
ability_ability_runtime/interfaces/inner_api/napi_base_context/BUILD.gn
T
m1097338284 61b623e4aa FormManager解耦
Signed-off-by: m1097338284 <m1097388284@outlook.com>
2026-02-26 19:24:10 +08:00

44 lines
1.2 KiB
Plaintext

# Copyright (c) 2021 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("napi_context_base_public_config") {
visibility = [ ":*" ]
include_dirs = [ "include" ]
}
ohos_shared_library("napi_base_context") {
sources = [ "src/napi_base_context.cpp" ]
configs = []
public_configs = [ ":napi_context_base_public_config" ]
external_deps = [
"napi:ace_napi",
"form_fwk:form_render_info",
"form_fwk:form_common_info",
]
public_external_deps = [
"form_fwk:form_manager",
"window_manager:libdm",
"window_manager:libwm",
]
innerapi_tags = [ "platformsdk" ]
subsystem_name = "ability"
part_name = "ability_runtime"
}