2024-04-13 10:58:15 +00:00
|
|
|
# Copyright (c) 2024 Huawei Device Co., Ltd.
|
2021-06-01 16:04:01 +00:00
|
|
|
# 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.
|
2022-06-08 12:09:15 +00:00
|
|
|
import("//base/startup/appspawn/appspawn.gni")
|
2021-06-01 16:04:01 +00:00
|
|
|
import("//build/ohos.gni")
|
|
|
|
|
|
|
|
config("appspawn_config") {
|
2023-04-12 04:00:50 +00:00
|
|
|
visibility = [ "./*" ]
|
2021-06-01 16:04:01 +00:00
|
|
|
include_dirs = [
|
2024-04-13 10:58:15 +00:00
|
|
|
"${appspawn_innerkits_path}/include",
|
|
|
|
"${appspawn_path}/modules/module_engine/include",
|
|
|
|
"${appspawn_path}/util/include",
|
|
|
|
"//commonlibrary/c_utils/base/include",
|
2021-06-01 16:04:01 +00:00
|
|
|
]
|
2022-01-26 09:17:30 +00:00
|
|
|
|
2024-04-13 10:58:15 +00:00
|
|
|
cflags = []
|
2022-01-26 09:17:30 +00:00
|
|
|
if (build_selinux) {
|
2024-04-13 10:58:15 +00:00
|
|
|
cflags += [ "-DWITH_SELINUX" ]
|
2023-10-31 17:46:34 +00:00
|
|
|
}
|
2021-06-01 16:04:01 +00:00
|
|
|
|
2024-04-13 10:58:15 +00:00
|
|
|
if (build_seccomp) {
|
|
|
|
cflags += [ "-DWITH_SECCOMP" ]
|
2022-07-25 15:08:00 +00:00
|
|
|
}
|
2024-04-13 10:58:15 +00:00
|
|
|
}
|
2022-07-25 15:08:00 +00:00
|
|
|
|
2024-04-13 10:58:15 +00:00
|
|
|
if (!defined(ohos_lite)) {
|
2023-11-06 10:42:53 +00:00
|
|
|
ohos_prebuilt_etc("appspawn.rc") {
|
|
|
|
source = "appspawn.cfg"
|
|
|
|
relative_install_dir = "init"
|
|
|
|
subsystem_name = "${subsystem_name}"
|
|
|
|
part_name = "${part_name}"
|
2022-05-10 13:48:05 +00:00
|
|
|
}
|
2024-05-14 08:21:23 +00:00
|
|
|
|
|
|
|
ohos_prebuilt_etc("cjappspawn.rc") {
|
|
|
|
source = "cjappspawn.cfg"
|
|
|
|
relative_install_dir = "init"
|
|
|
|
subsystem_name = "${subsystem_name}"
|
|
|
|
part_name = "${part_name}"
|
|
|
|
}
|
2021-06-01 16:04:01 +00:00
|
|
|
}
|
|
|
|
|
2023-11-06 10:42:53 +00:00
|
|
|
group("appspawn_all") {
|
|
|
|
deps = []
|
|
|
|
if (!defined(ohos_lite)) {
|
2024-04-13 10:58:15 +00:00
|
|
|
deps += [ "standard:appspawn" ]
|
|
|
|
deps += [ "standard:appspawn_helper" ]
|
|
|
|
deps += [ "standard:pid_ns_init" ]
|
2023-11-06 10:42:53 +00:00
|
|
|
deps += [ ":appspawn.rc" ]
|
|
|
|
deps += [ "etc:etc_files" ]
|
2024-04-13 10:58:15 +00:00
|
|
|
deps += [ "modules/ace_adapter:appspawn_ace" ]
|
|
|
|
deps += [ "modules/asan:appspawn_asan" ]
|
|
|
|
deps += [ "modules/nweb_adapter:appspawn_nweb" ]
|
|
|
|
deps += [ "modules/sandbox:appspawn_sandbox" ]
|
|
|
|
deps += [ "modules/common:appspawn_common" ]
|
|
|
|
deps += [ "modules/sysevent:event_reporter" ]
|
|
|
|
deps += [ "${appspawn_innerkits_path}/client:appspawn_client" ]
|
|
|
|
deps += [
|
|
|
|
"${appspawn_path}/modules/module_engine:libappspawn_module_engine",
|
|
|
|
"${appspawn_path}/modules/module_engine:libappspawn_stub_empty",
|
|
|
|
]
|
2024-02-28 02:17:18 +00:00
|
|
|
deps += [ "service/hnp:hnp" ]
|
2024-05-14 08:21:23 +00:00
|
|
|
if (appspawn_support_cj) { # for support cj appspawn
|
|
|
|
deps += [
|
|
|
|
":cjappspawn.rc",
|
2024-05-15 12:22:29 +00:00
|
|
|
"standard:cjappspawn",
|
2024-05-14 08:21:23 +00:00
|
|
|
]
|
|
|
|
}
|
2023-11-06 10:42:53 +00:00
|
|
|
} else {
|
|
|
|
deps += [ "lite:appspawn_lite" ]
|
|
|
|
}
|
2021-06-01 16:04:01 +00:00
|
|
|
}
|