• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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("hapIncludeso7") {
18  certificate_profile = "signature/com.example.testhapso7.p7b"
19  hap_name = "hapIncludeso7"
20  system_lib_deps = [
21    ":hapso13",
22    ":hapso14",
23  ]
24
25  hap_out_dir = "$root_out_dir/tests/systemtest/bundle_framework/bundle_framework/resource/testHapSo"
26
27  subsystem_name = "bundlemanager"
28
29  js_build_mode = "release"
30  sdk_home = "//prebuilts/ohos-sdk/linux"
31  sdk_type_name = [ "sdk.dir" ]
32  assemble_type = "assembleHap"
33  build_level = "module"
34  build_modules = [ "entry" ]
35}
36
37ohos_shared_library("hapso13") {
38  sources = [ "entry/src/main/cpp/hapso13.cpp" ]
39  visibility = [ ":*" ]
40  subsystem_name = "bundlemanager"
41  part_name = "bundle_framework"
42}
43
44ohos_shared_library("hapso14") {
45  sources = [ "entry/src/main/cpp/hapso14.cpp" ]
46  visibility = [ ":*" ]
47  subsystem_name = "bundlemanager"
48  part_name = "bundle_framework"
49}
50