You need to sign in or sign up before continuing.
BUILD.gn 6.6 KB
Newer Older
M
Mupceet 已提交
1
# Copyright (c) 2021-2022 Huawei Device Co., Ltd.
Z
zhong_ning 已提交
2 3 4 5 6 7 8 9 10 11
# 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
H
handyohos 已提交
12
# limitations under the License.
M
init  
Mupceet 已提交
13
import("//base/startup/init/begetd.gni")
Y
yanghongliang 已提交
14

M
Mupceet 已提交
15
common_include_dirs = [
M
init  
Mupceet 已提交
16 17 18 19 20 21 22 23 24 25 26 27
  "//base/startup/init/services/begetctl",
  "//base/startup/init/services/begetctl/shell",
  "//base/startup/init/services/param/include",
  "//base/startup/init/services/param/adapter",
  "//base/startup/init/services/param/linux",
  "//base/startup/init/services/param/base",
  "//base/startup/init/services/include/param",
  "//base/startup/init/services/include",
  "//base/startup/init/services/loopevent/include",
  "//base/startup/init/services/init/include",
  "//base/startup/init/services/log",
  "//base/startup/init/interfaces/innerkits/include",
A
an_xinwei 已提交
28
  "//base/security/selinux/interfaces/policycoreutils/include",
M
Mupceet 已提交
29
  "//third_party/bounds_checking_function/include",
A
an_xinwei 已提交
30
  "//third_party/selinux/libselinux/include",
M
Mupceet 已提交
31 32
]

M
Mupceet 已提交
33 34 35 36 37 38 39
if (defined(ohos_lite)) {
  executable("begetctl") {
    output_name = "begetctl"
    sources = [
      "main.c",
      "param_cmd.c",
      "shell/shell_bas.c",
X
xionglei6 已提交
40
    ]
M
Mupceet 已提交
41 42 43
    defines = [
      "_GNU_SOURCE",  #syscall function need this macro definition
      "__MUSL__",
M
Mupceet 已提交
44
      "OHOS_LITE",
M
Mupceet 已提交
45
    ]
M
Mupceet 已提交
46
    if (param_test) {
M
init  
Mupceet 已提交
47
      sources += [ "//base/startup/init/test/moduletest/syspara.cpp" ]
M
Mupceet 已提交
48
    }
M
Mupceet 已提交
49 50

    include_dirs = common_include_dirs
M
Mupceet 已提交
51 52
    deps = [
      "//base/hiviewdfx/hilog_lite/frameworks/featured:hilog_shared",
M
init  
Mupceet 已提交
53 54
      "//base/startup/init/interfaces/innerkits:libbegetutil",
      "//base/startup/init/services/utils:libinit_utils",
M
Mupceet 已提交
55 56
      "//build/lite/config/component/cJSON:cjson_static",
      "//third_party/bounds_checking_function:libsec_static",
X
xionglei6 已提交
57 58
    ]
  }
M
Mupceet 已提交
59 60
} else {
  import("//build/ohos.gni")
X
xionglei6 已提交
61

M
Mupceet 已提交
62 63 64
  ohos_executable("begetctl") {
    sources = [
      "bootchart_cmd.c",
M
Mupceet 已提交
65
      "dump_service.c",
M
Mupceet 已提交
66 67 68
      "init_cmd_reboot.c",
      "main.c",
      "misc_daemon.cpp",
69
      "modulectl.c",
M
Mupceet 已提交
70 71 72
      "param_cmd.c",
      "sandbox.cpp",
      "service_control.c",
C
cheng_jinsong 已提交
73
      "setloglevel.c",
M
Mupceet 已提交
74 75
      "shell/shell_bas.c",
    ]
X
xionglei6 已提交
76

M
Mupceet 已提交
77
    defines = [ "_GNU_SOURCE" ]
X
xionglei6 已提交
78

M
Mupceet 已提交
79
    if (enable_ohos_startup_init_feature_loader) {
M
Mupceet 已提交
80 81 82
      defines += [ "PRODUCT_RK" ]
    }

A
an_xinwei 已提交
83
    include_dirs = common_include_dirs
M
Mupceet 已提交
84
    deps = [
M
init  
Mupceet 已提交
85 86
      "//base/startup/init/interfaces/innerkits:libbegetutil",
      "//base/startup/init/interfaces/innerkits/control_fd:libcontrolfd",
87
      "//base/startup/init/services/sandbox:sandbox",
M
Mupceet 已提交
88
      "//third_party/bounds_checking_function:libsec_shared",
H
handyohos 已提交
89
      "//third_party/cJSON:cjson",
X
xionglei6 已提交
90
    ]
H
hongtao 已提交
91
    external_deps = [ "c_utils:utils" ]
M
Mupceet 已提交
92 93

    if (param_test) {
M
Mupceet 已提交
94
      sources += [
M
init  
Mupceet 已提交
95 96
        "//base/startup/init/test/moduletest/param_test_cmds.c",
        "//base/startup/init/test/moduletest/syspara.cpp",
M
Mupceet 已提交
97
      ]
M
init  
Mupceet 已提交
98
      deps += [ "//base/startup/init/interfaces/innerkits:libbeget_proxy" ]
M
Mupceet 已提交
99 100 101 102 103 104 105
      defines += [
        "OHOS_SERVICE_DUMP",
        "INIT_TEST",
      ]
    }

    if (build_selinux) {
A
an_xinwei 已提交
106 107 108
      deps += [
        "//base/security/selinux:libselinux_parameter_static",
        "//third_party/selinux:libselinux",
M
Mupceet 已提交
109 110 111 112 113 114 115 116 117 118 119 120 121 122
      ]
      defines += [ "PARAM_SUPPORT_SELINUX" ]
    }

    symlink_target_name = [
      "misc_daemon",
      "reboot",
      "devctl",
      "service",
      "service_control",
      "start_service",
      "stop_service",
      "service",
      "sandbox",
M
Mupceet 已提交
123
      "dump_service",
C
cheng_jinsong 已提交
124 125
      "setloglevel",
      "getloglevel",
M
Mupceet 已提交
126
    ]
C
slot  
chengjinsong 已提交
127

C
slot  
chengjinsong 已提交
128
    if (enable_ohos_startup_init_feature_ab_partition) {
C
slot  
chengjinsong 已提交
129
      sources += [ "partitionslot.cpp" ]
C
chengjinsong 已提交
130 131 132 133 134
      include_dirs += [ "//drivers/hdf_core/adapter/uhdf2/include" ]
      external_deps += [
        "drivers_interface_partitionslot:libpartitionslot_proxy_1.0",
        "hdf_core:libhdi",
      ]
C
slot  
chengjinsong 已提交
135 136 137
      symlink_target_name += [ "partitionslot" ]
    }

M
Mupceet 已提交
138 139 140
    install_images = [ "system" ]
    install_enable = true
    part_name = "init"
141
    subsystem_name = "startup"
X
xionglei6 已提交
142 143
  }

M
Mupceet 已提交
144 145 146 147 148 149 150 151
  ohos_executable("paramshell") {
    sources = [
      "param_cmd.c",
      "shell/shell_bas.c",
      "shell/shell_main.c",
    ]

    defines = [ "_GNU_SOURCE" ]
M
Mupceet 已提交
152
    include_dirs = common_include_dirs
M
Mupceet 已提交
153
    deps = [
M
init  
Mupceet 已提交
154
      "//base/startup/init/interfaces/innerkits:libbegetutil",
A
an_xinwei 已提交
155
      "//third_party/bounds_checking_function:libsec_shared",
M
Mupceet 已提交
156 157 158
    ]

    if (build_selinux) {
A
an_xinwei 已提交
159 160 161 162
      deps += [
        "//base/security/selinux:libselinux_parameter_static",
        "//third_party/selinux:libselinux",
      ]
M
Mupceet 已提交
163 164
      defines += [ "PARAM_SUPPORT_SELINUX" ]
    }
X
xionglei6 已提交
165

M
Mupceet 已提交
166
    if (param_test) {
M
Mupceet 已提交
167
      sources += [
M
init  
Mupceet 已提交
168 169
        "//base/startup/init/test/moduletest/param_test_cmds.c",
        "//base/startup/init/test/moduletest/syspara.cpp",
M
Mupceet 已提交
170
      ]
M
init  
Mupceet 已提交
171
      deps += [ "//base/startup/init/interfaces/innerkits:libbeget_proxy" ]
M
Mupceet 已提交
172 173 174 175 176 177 178 179 180 181
      defines += [
        "OHOS_SERVICE_DUMP",
        "INIT_TEST",
      ]
    }

    install_images = [ "system" ]
    install_enable = true

    part_name = "init"
182
    subsystem_name = "startup"
M
Mupceet 已提交
183
  }
M
Mupceet 已提交
184 185 186 187 188 189 190 191 192 193 194 195 196

  ohos_executable("param") {
    sources = [
      "main.c",
      "param_cmd.c",
      "shell/shell_bas.c",
    ]

    defines = [
      "INIT_AGENT",
      "_GNU_SOURCE",
    ]

M
Mupceet 已提交
197
    include_dirs = common_include_dirs
M
Mupceet 已提交
198
    deps = [
M
init  
Mupceet 已提交
199 200 201 202
      "//base/startup/init/services/log:agent_log",
      "//base/startup/init/services/loopevent:loopevent",
      "//base/startup/init/services/param/linux:param_client",
      "//base/startup/init/services/utils:libinit_utils",
M
Mupceet 已提交
203 204
      "//third_party/bounds_checking_function:libsec_static",
    ]
A
an_xinwei 已提交
205 206 207 208 209
    if (use_musl == false) {
      deps += [ "//base/startup/init/services/param/base:parameterbase" ]
    } else {
      deps += [ "//base/startup/init/services/param/base:parameterbase_ext" ]
    }
M
Mupceet 已提交
210
    external_deps = [
H
hongtao 已提交
211
      "c_utils:utils",
M
Mupceet 已提交
212 213 214
      "hilog_native:libhilog_base",
    ]
    if (build_selinux) {
A
an_xinwei 已提交
215 216 217 218
      deps += [
        "//base/security/selinux:libselinux_parameter_static",
        "//third_party/selinux:libselinux",
      ]
M
Mupceet 已提交
219 220 221 222 223
      defines += [ "PARAM_SUPPORT_SELINUX" ]
    }
    install_images = [ "system" ]
    install_enable = true
    part_name = "init"
224
    subsystem_name = "startup"
M
Mupceet 已提交
225
  }
M
Mupceet 已提交
226
}
M
Mupceet 已提交
227

M
Mupceet 已提交
228 229 230 231 232 233 234
group("begetctl_cmd") {
  if (defined(ohos_lite)) {
    if (enable_ohos_startup_init_feature_begetctl_liteos &&
        ohos_kernel_type != "liteos_m") {
      deps = [ ":begetctl" ]
    }
  } else {
M
Mupceet 已提交
235 236 237 238 239 240
    deps = [
      ":begetctl",
      ":param",
      ":paramshell",
    ]
  }
X
xionglei6 已提交
241
}