Reformat soong Blueprints back to old style
Change-Id: Ic53ff0123bab9f8876f3c53f6c1ea8f07d225604
This commit is contained in:
parent
3f40fa460d
commit
ba44287610
90
Blueprints
90
Blueprints
|
@ -10,82 +10,82 @@
|
||||||
// 2) Build again
|
// 2) Build again
|
||||||
//
|
//
|
||||||
|
|
||||||
bootstrap_go_binary(
|
bootstrap_go_binary {
|
||||||
name = "soong_build",
|
name: "soong_build",
|
||||||
deps = [
|
deps: [
|
||||||
"blueprint",
|
"blueprint",
|
||||||
"blueprint-bootstrap",
|
"blueprint-bootstrap",
|
||||||
"soong-cc",
|
"soong-cc",
|
||||||
"soong-common",
|
"soong-common",
|
||||||
"soong-config",
|
"soong-config",
|
||||||
],
|
],
|
||||||
srcs = [
|
srcs: [
|
||||||
"cmd/soong_build/main.go",
|
"cmd/soong_build/main.go",
|
||||||
],
|
],
|
||||||
primaryBuilder = true,
|
primaryBuilder: true,
|
||||||
)
|
}
|
||||||
|
|
||||||
bootstrap_go_binary(
|
bootstrap_go_binary {
|
||||||
name = "soong_glob",
|
name: "soong_glob",
|
||||||
deps = [
|
deps: [
|
||||||
"soong-glob",
|
"soong-glob",
|
||||||
],
|
],
|
||||||
srcs = [
|
srcs: [
|
||||||
"cmd/soong_glob/soong_glob.go",
|
"cmd/soong_glob/soong_glob.go",
|
||||||
],
|
],
|
||||||
)
|
}
|
||||||
|
|
||||||
bootstrap_go_package(
|
bootstrap_go_package {
|
||||||
name = "soong-glob",
|
name: "soong-glob",
|
||||||
pkgPath = "android/soong/glob",
|
pkgPath: "android/soong/glob",
|
||||||
deps = [
|
deps: [
|
||||||
"blueprint-deptools",
|
"blueprint-deptools",
|
||||||
],
|
],
|
||||||
srcs = [
|
srcs: [
|
||||||
"glob/glob.go",
|
"glob/glob.go",
|
||||||
],
|
],
|
||||||
)
|
}
|
||||||
|
|
||||||
bootstrap_go_package(
|
bootstrap_go_package {
|
||||||
name = "soong-common",
|
name: "soong-common",
|
||||||
pkgPath = "android/soong/common",
|
pkgPath: "android/soong/common",
|
||||||
deps = [
|
deps: [
|
||||||
"blueprint",
|
"blueprint",
|
||||||
"blueprint-bootstrap",
|
"blueprint-bootstrap",
|
||||||
"soong-glob"
|
"soong-glob",
|
||||||
],
|
],
|
||||||
srcs = [
|
srcs: [
|
||||||
"common/arch.go",
|
"common/arch.go",
|
||||||
"common/defs.go",
|
"common/defs.go",
|
||||||
"common/glob.go",
|
"common/glob.go",
|
||||||
"common/module.go",
|
"common/module.go",
|
||||||
"common/paths.go",
|
"common/paths.go",
|
||||||
],
|
],
|
||||||
)
|
}
|
||||||
|
|
||||||
bootstrap_go_package(
|
bootstrap_go_package {
|
||||||
name = "soong-config",
|
name: "soong-config",
|
||||||
pkgPath = "android/soong/config",
|
pkgPath: "android/soong/config",
|
||||||
deps = [
|
deps: [
|
||||||
"blueprint",
|
"blueprint",
|
||||||
"blueprint-bootstrap",
|
"blueprint-bootstrap",
|
||||||
"soong-common",
|
"soong-common",
|
||||||
],
|
],
|
||||||
srcs = [
|
srcs: [
|
||||||
"config/config.go",
|
"config/config.go",
|
||||||
],
|
],
|
||||||
)
|
}
|
||||||
|
|
||||||
bootstrap_go_package(
|
bootstrap_go_package {
|
||||||
name = "soong-cc",
|
name: "soong-cc",
|
||||||
pkgPath = "android/soong/cc",
|
pkgPath: "android/soong/cc",
|
||||||
deps = [
|
deps: [
|
||||||
"blueprint",
|
"blueprint",
|
||||||
"blueprint-pathtools",
|
"blueprint-pathtools",
|
||||||
"soong-common",
|
"soong-common",
|
||||||
"soong-config",
|
"soong-config",
|
||||||
],
|
],
|
||||||
srcs = [
|
srcs: [
|
||||||
"cc/builder.go",
|
"cc/builder.go",
|
||||||
"cc/cc.go",
|
"cc/cc.go",
|
||||||
"cc/clang.go",
|
"cc/clang.go",
|
||||||
|
@ -97,16 +97,16 @@ bootstrap_go_package(
|
||||||
|
|
||||||
"cc/x86_linux_host.go",
|
"cc/x86_linux_host.go",
|
||||||
],
|
],
|
||||||
)
|
}
|
||||||
|
|
||||||
toolchain_library(
|
toolchain_library {
|
||||||
name = "libatomic",
|
name: "libatomic",
|
||||||
)
|
}
|
||||||
|
|
||||||
toolchain_library(
|
toolchain_library {
|
||||||
name = "libgcc",
|
name: "libgcc",
|
||||||
)
|
}
|
||||||
|
|
||||||
toolchain_library(
|
toolchain_library {
|
||||||
name = "libgcov",
|
name: "libgcov",
|
||||||
)
|
}
|
||||||
|
|
Loading…
Reference in New Issue