1# Copyright (c) 2023-2025 Huawei Device Co., Ltd. 2# Licensed under the Apache License, Version 2.0 (the "License"); 3# you may not use this file except in compliance with the License. 4# You may obtain a copy of the License at 5# 6# http://www.apache.org/licenses/LICENSE-2.0 7# 8# Unless required by applicable law or agreed to in writing, software 9# distributed under the License is distributed on an "AS IS" BASIS, 10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11# See the License for the specific language governing permissions and 12# limitations under the License. 13 14import("//build/ohos.gni") 15import("../../../../../../appexecfwk.gni") 16 17ohos_app("hapIncludeso5Feature3") { 18 certificate_profile = "signature/com.example.testhapso5.p7b" 19 hap_name = "hapIncludeso5Feature3" 20 21 hap_out_dir = "$root_out_dir/tests/systemtest/bundle_framework/bundle_framework/resource/testHapSo" 22 23 subsystem_name = "bundlemanager" 24 js_build_mode = "release" 25 sdk_home = "//prebuilts/ohos-sdk/linux" 26 sdk_type_name = [ "sdk.dir" ] 27 assemble_type = "assembleHap" 28 build_level = "module" 29 build_modules = [ "feature3" ] 30 system_lib_deps = [ 31 ":hapso29", 32 ":hapso30", 33 ] 34} 35 36ohos_shared_library("hapso29") { 37 sources = [ "entry/src/main/cpp/hapso29.cpp" ] 38 visibility = [ ":*" ] 39 subsystem_name = "bundlemanager" 40 part_name = "bundle_framework" 41} 42 43ohos_shared_library("hapso30") { 44 sources = [ "entry/src/main/cpp/hapso30.cpp" ] 45 visibility = [ ":*" ] 46 subsystem_name = "bundlemanager" 47 part_name = "bundle_framework" 48} 49