2022-06-08 10:42:40 +00:00
|
|
|
# Copyright (c) 2020-2022 Huawei Device Co., Ltd.
|
2021-03-11 10:45:09 +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-05-25 04:41:36 +00:00
|
|
|
import("//base/startup/init_lite/begetd.gni")
|
2022-06-08 10:42:40 +00:00
|
|
|
group("startup_init") {
|
|
|
|
deps = []
|
2021-10-14 08:43:33 +00:00
|
|
|
|
2022-06-08 10:42:40 +00:00
|
|
|
# for liteos
|
|
|
|
if (defined(ohos_lite) && ohos_kernel_type != "liteos_m") {
|
2021-04-21 14:11:55 +00:00
|
|
|
deps = [
|
2022-06-08 10:42:40 +00:00
|
|
|
"etc:etc_files",
|
|
|
|
"init/lite:init",
|
2021-04-29 06:59:46 +00:00
|
|
|
]
|
2022-02-16 06:57:23 +00:00
|
|
|
|
2022-06-08 10:42:40 +00:00
|
|
|
# for unittest
|
|
|
|
if (ohos_build_type == "debug") {
|
|
|
|
deps += [ "//base/startup/init_lite/test/unittest/lite:init_test" ]
|
2022-05-14 08:41:35 +00:00
|
|
|
}
|
2021-03-11 10:45:09 +00:00
|
|
|
}
|
|
|
|
|
2022-06-08 10:42:40 +00:00
|
|
|
# for standard
|
|
|
|
if (!defined(ohos_lite)) {
|
2021-07-09 11:22:27 +00:00
|
|
|
deps = [
|
2022-05-14 15:43:55 +00:00
|
|
|
"etc:etc_files",
|
2022-06-08 10:42:40 +00:00
|
|
|
"init/standard:init",
|
2021-07-09 11:22:27 +00:00
|
|
|
]
|
2022-05-25 04:41:36 +00:00
|
|
|
if (enable_ohos_startup_init_feature_watcher) {
|
2021-12-17 13:46:32 +00:00
|
|
|
deps += [
|
|
|
|
"//base/startup/init_lite/services/param/watcher:param_watcher",
|
|
|
|
"//base/startup/init_lite/services/param/watcher:param_watcher.rc",
|
|
|
|
"//base/startup/init_lite/services/param/watcher/sa_profile:param_watcher_profile",
|
|
|
|
]
|
|
|
|
}
|
2021-07-09 11:22:27 +00:00
|
|
|
}
|
2021-03-11 10:45:09 +00:00
|
|
|
}
|