mirror of
https://gitee.com/openharmony/startup_init
synced 2024-11-23 16:20:00 +00:00
6c8cb918bc
Signed-off-by: chenshixu1 <chenshixu1@huawei.com> Change-Id: Ib34476e954008886a37d75e3b51753f6b39d1956
71 lines
2.0 KiB
Plaintext
Executable File
71 lines
2.0 KiB
Plaintext
Executable File
# Copyright (c) 2020-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("//base/startup/init/begetd.gni")
|
|
group("startup_init") {
|
|
deps = []
|
|
|
|
# for liteos
|
|
if (defined(ohos_lite) && ohos_kernel_type != "liteos_m") {
|
|
deps = [
|
|
"etc:etc_files",
|
|
"init/lite:init",
|
|
]
|
|
|
|
# for unittest
|
|
if (ohos_build_type == "debug") {
|
|
deps += [ "//base/startup/init/test/unittest/lite:init_test" ]
|
|
}
|
|
}
|
|
|
|
# for standard
|
|
if (!defined(ohos_lite)) {
|
|
deps = [
|
|
"etc:etc_files",
|
|
"init/standard:init",
|
|
]
|
|
data_deps = [ "init/standard:init_early" ]
|
|
deps += [ "//base/startup/init/services/etc:watchdog.cfg" ]
|
|
deps += [ "//base/startup/init/services/etc:ueventd.cfg" ]
|
|
external_deps = [
|
|
"e2fsprogs:blkid",
|
|
"e2fsprogs:e2fsck",
|
|
"e2fsprogs:e2fsdroid",
|
|
"e2fsprogs:libext2_blkid",
|
|
"e2fsprogs:libext2_com_err",
|
|
"e2fsprogs:libext2_e2p",
|
|
"e2fsprogs:libext2_misc",
|
|
"e2fsprogs:libext2_quota",
|
|
"e2fsprogs:libext2_uuid",
|
|
"e2fsprogs:libext2fs",
|
|
"e2fsprogs:mke2fs",
|
|
"e2fsprogs:resize2fs",
|
|
]
|
|
|
|
if (use_musl) {
|
|
external_deps += [
|
|
"f2fs-tools:fsck.f2fs",
|
|
"f2fs-tools:libf2fs",
|
|
"f2fs-tools:mkfs.f2fs",
|
|
]
|
|
}
|
|
|
|
if (enable_ohos_startup_init_feature_watcher) {
|
|
deps += [
|
|
"//base/startup/init/services/param/watcher:param_watcher",
|
|
"//base/startup/init/services/param/watcher:param_watcher.rc",
|
|
"//base/startup/init/services/param/watcher/sa_profile:param_watcher_profile",
|
|
]
|
|
}
|
|
}
|
|
}
|