0773a60302
Create bp2build converters for the following module types - ndk_headers - versioned_ndk_headers Details - Partial bp2build conversion. Only `cc_api_headers` targets will be generted within the scope of this CL - Glob expansion. Aligned with other bp2build converters, this impl will expand globs in Android.bp so that all .h files are explicitly listed in the generated BUILD files. As an extreme example, the size of out/soong/workspace/bionic/libc/BUILD will increase from ~170KB to ~230KB (33% increase). This makes the BUILD files less readable, and `cc_api_headers` section of the BUILD file should probably not be checked into the tree in this format Test: b cquery //bionic/libc:libc_uapi --output=starlark --starlark:expr="providers(target).get('//build/bazel/rules/apis:cc_api_contribution.bzl%CcApiHeaderInfo')" Test: go test ./bp2build Test: go test ./cc Change-Id: I810d5380f72dc90f4cdf4aa508570f3a80d8d932
77 lines
2.4 KiB
Text
77 lines
2.4 KiB
Text
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",
|
|
"testing.go",
|
|
],
|
|
deps: [
|
|
"soong-android",
|
|
"soong-android-allowlists",
|
|
"soong-android-soongconfig",
|
|
"soong-apex",
|
|
"soong-bazel",
|
|
"soong-cc",
|
|
"soong-cc-config",
|
|
"soong-etc",
|
|
"soong-genrule",
|
|
"soong-linkerconfig",
|
|
"soong-python",
|
|
"soong-sh",
|
|
"soong-shared",
|
|
"soong-starlark-format",
|
|
"soong-ui-metrics",
|
|
],
|
|
testSrcs: [
|
|
"aar_conversion_test.go",
|
|
"android_app_certificate_conversion_test.go",
|
|
"android_app_conversion_test.go",
|
|
"apex_conversion_test.go",
|
|
"apex_key_conversion_test.go",
|
|
"build_conversion_test.go",
|
|
"bzl_conversion_test.go",
|
|
"cc_binary_conversion_test.go",
|
|
"cc_library_conversion_test.go",
|
|
"cc_library_headers_conversion_test.go",
|
|
"cc_library_shared_conversion_test.go",
|
|
"cc_library_static_conversion_test.go",
|
|
"cc_object_conversion_test.go",
|
|
"cc_prebuilt_library_conversion_test.go",
|
|
"cc_prebuilt_library_shared_test.go",
|
|
"cc_prebuilt_library_static_test.go",
|
|
"cc_yasm_conversion_test.go",
|
|
"conversion_test.go",
|
|
"filegroup_conversion_test.go",
|
|
"genrule_conversion_test.go",
|
|
"gensrcs_conversion_test.go",
|
|
"java_binary_host_conversion_test.go",
|
|
"java_import_conversion_test.go",
|
|
"java_library_conversion_test.go",
|
|
"java_library_host_conversion_test.go",
|
|
"java_plugin_conversion_test.go",
|
|
"java_proto_conversion_test.go",
|
|
"linker_config_conversion_test.go",
|
|
"ndk_headers_conversion_test.go",
|
|
"performance_test.go",
|
|
"prebuilt_etc_conversion_test.go",
|
|
"python_binary_conversion_test.go",
|
|
"python_library_conversion_test.go",
|
|
"sh_conversion_test.go",
|
|
"soong_config_module_type_conversion_test.go",
|
|
],
|
|
pluginFor: [
|
|
"soong_build",
|
|
],
|
|
}
|