# 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") import("//foundation/arkui/ace_engine/ace_config.gni") import("//foundation/arkui/ace_engine/build/ace_controller.gni") # Install packages group("ace_packages") { # core library for Ability Cross-platform Environment(ACE) JS deps = [ "$ace_root/advanced_ui_component:advanced_ui_component", "$ace_root/build:libace", "$ace_root/build:libace_compatible", "$ace_root/build:libace_engine_pa_ark", "$ace_root/component_ext:component_ext", "$ace_root/frameworks/base/network:ace_network", "$ace_root/frameworks/bridge/cj_frontend:cj_frontend_ohos", "$ace_root/interfaces/inner_api:innerkits_target", "$ace_root/interfaces/inner_api/ace:ace_forward_compatibility", "$ace_root/interfaces/inner_api/ace:ace_uicontent", "$ace_root/interfaces/napi/kits:napi_group", "$ace_root/interfaces/native:ace_packages_ndk", ] if (is_asan || !ace_engine_feature_enable_libace) { deps -= [ "$ace_root/build:libace" ] } }