You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.0 KiB
44 lines
1.0 KiB
4 months ago
|
package {
|
||
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
||
|
}
|
||
|
|
||
|
bootstrap_go_package {
|
||
|
name: "soong-bp2build",
|
||
|
pkgPath: "android/soong/bp2build",
|
||
|
srcs: [
|
||
|
"androidbp_to_build_templates.go",
|
||
|
"bp2build.go",
|
||
|
"build_conversion.go",
|
||
|
"bzl_conversion.go",
|
||
|
"configurability.go",
|
||
|
"constants.go",
|
||
|
"conversion.go",
|
||
|
"metrics.go",
|
||
|
"symlink_forest.go",
|
||
|
],
|
||
|
deps: [
|
||
|
"soong-android",
|
||
|
"soong-bazel",
|
||
|
"soong-cc",
|
||
|
"soong-cc-config",
|
||
|
"soong-genrule",
|
||
|
"soong-python",
|
||
|
"soong-sh",
|
||
|
],
|
||
|
testSrcs: [
|
||
|
"build_conversion_test.go",
|
||
|
"bzl_conversion_test.go",
|
||
|
"cc_library_conversion_test.go",
|
||
|
"cc_library_headers_conversion_test.go",
|
||
|
"cc_library_static_conversion_test.go",
|
||
|
"cc_object_conversion_test.go",
|
||
|
"conversion_test.go",
|
||
|
"python_binary_conversion_test.go",
|
||
|
"sh_conversion_test.go",
|
||
|
"testing.go",
|
||
|
],
|
||
|
pluginFor: [
|
||
|
"soong_build",
|
||
|
],
|
||
|
}
|