提交 50007d82 编写于 作者: Y yangming_ha

user space only

Signed-off-by: Nyangming_ha <yangming_ha@163.com>
上级 2803102b
......@@ -16,8 +16,10 @@ import("//build/lite/ndk/ndk.gni")
assert(gn_version >= 1714, "GN version 1714 required, please upgrade!")
# write version info.
version_info = [ "VERSION=\"$ohos_version\"",
"BUILD_TIME=\"$ohos_build_datetime\""]
version_info = [
"VERSION=\"$ohos_version\"",
"BUILD_TIME=\"$ohos_build_datetime\"",
]
write_file("$root_build_dir/etc/version-info", version_info)
group("prebuilts") {
......@@ -65,7 +67,7 @@ group("ohos") {
if (component.component == product_configed_component.component) {
# Step 6.1.1: Loop OS components adapted kernel type.
foreach(component_adapted_kernel, component.adapted_kernel) {
if (component_adapted_kernel == product_cfg.kernel_type &&
if (component_adapted_kernel == product_cfg.kernel_type &&
kernel_valid == false) {
kernel_valid = true
}
......@@ -76,19 +78,27 @@ group("ohos") {
"Invalid component configed, ${subsystem_name}:${product_configed_component.component} " + "not available for kernel: ${product_cfg.kernel_type}!")
# Step 6.1.2: Add valid component for compiling.
foreach(component_target, component.targets) {
deps += [ component_target ]
# Skip kernel target for userspace only scenario.
if (!ohos_build_userspace_only ||
(ohos_build_userspace_only && subsystem_name != "kernel" && subsystem_name != "vendor")) {
print("$subsystem_name ")
foreach(component_target, component.targets) {
deps += [ component_target ]
}
}
}
}
}
}
# Step 7: Add device and product target by default.
deps += [
"${device_path}/../",
"${product_path}"
]
# Skip device and product target for userspace only scenario.
if (!ohos_build_userspace_only) {
# Step 7: Add device and product target by default.
deps += [
"${device_path}/../",
"${product_path}",
]
}
print("$deps")
} else {
deps += string_split(ohos_build_target, "&&")
}
......
......@@ -90,3 +90,7 @@ declare_args() {
enable_tee_ree = false
enable_ohos_security_dmverity = false
}
declare_args() {
ohos_build_userspace_only = false
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册