mirror of
https://gitee.com/openharmony/startup_init
synced 2024-11-24 08:39:46 +00:00
86f3dd270c
Signed-off-by: 张文迪 <zhangwendi3@huawei.com>
51 lines
1.5 KiB
Plaintext
Executable File
51 lines
1.5 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",
|
|
"//third_party/e2fsprogs:e2fsprogs",
|
|
]
|
|
|
|
if (use_musl) {
|
|
deps += [ "//third_party/f2fs-tools:f2fs-tools" ]
|
|
}
|
|
|
|
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",
|
|
]
|
|
}
|
|
}
|
|
}
|