2021-02-04 03:08:28 +01:00
|
|
|
package {
|
|
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
|
|
}
|
|
|
|
|
2020-11-26 01:06:39 +01:00
|
|
|
bootstrap_go_package {
|
|
|
|
name: "soong-bp2build",
|
|
|
|
pkgPath: "android/soong/bp2build",
|
|
|
|
srcs: [
|
|
|
|
"androidbp_to_build_templates.go",
|
|
|
|
"bp2build.go",
|
|
|
|
"build_conversion.go",
|
|
|
|
"bzl_conversion.go",
|
2021-02-24 13:20:12 +01:00
|
|
|
"configurability.go",
|
2021-02-17 19:22:03 +01:00
|
|
|
"constants.go",
|
2020-11-26 01:06:39 +01:00
|
|
|
"conversion.go",
|
2021-02-19 06:48:40 +01:00
|
|
|
"metrics.go",
|
2021-04-16 13:47:36 +02:00
|
|
|
"symlink_forest.go",
|
2022-08-11 22:00:00 +02:00
|
|
|
"testing.go",
|
2020-11-26 01:06:39 +01:00
|
|
|
],
|
|
|
|
deps: [
|
|
|
|
"soong-android",
|
2022-03-28 21:53:03 +02:00
|
|
|
"soong-android-allowlists",
|
2021-11-19 15:29:43 +01:00
|
|
|
"soong-android-soongconfig",
|
2021-07-02 13:17:16 +02:00
|
|
|
"soong-apex",
|
2020-12-14 14:25:34 +01:00
|
|
|
"soong-bazel",
|
2021-02-15 12:04:32 +01:00
|
|
|
"soong-cc",
|
2021-05-06 15:31:18 +02:00
|
|
|
"soong-cc-config",
|
2021-07-28 14:03:16 +02:00
|
|
|
"soong-etc",
|
2020-12-14 15:09:52 +01:00
|
|
|
"soong-genrule",
|
2022-06-02 22:00:54 +02:00
|
|
|
"soong-linkerconfig",
|
2021-03-08 13:32:28 +01:00
|
|
|
"soong-python",
|
2021-02-09 11:59:06 +01:00
|
|
|
"soong-sh",
|
2022-06-02 22:00:54 +02:00
|
|
|
"soong-shared",
|
2022-02-03 14:42:10 +01:00
|
|
|
"soong-starlark-format",
|
2021-11-10 15:55:20 +01:00
|
|
|
"soong-ui-metrics",
|
2020-11-26 01:06:39 +01:00
|
|
|
],
|
|
|
|
testSrcs: [
|
2022-02-15 15:35:07 +01:00
|
|
|
"aar_conversion_test.go",
|
2021-07-28 12:21:31 +02:00
|
|
|
"android_app_certificate_conversion_test.go",
|
2021-12-14 21:25:51 +01:00
|
|
|
"android_app_conversion_test.go",
|
2021-07-02 13:17:16 +02:00
|
|
|
"apex_conversion_test.go",
|
2021-07-27 13:10:32 +02:00
|
|
|
"apex_key_conversion_test.go",
|
2020-11-26 01:06:39 +01:00
|
|
|
"build_conversion_test.go",
|
|
|
|
"bzl_conversion_test.go",
|
2021-12-14 21:25:51 +01:00
|
|
|
"cc_binary_conversion_test.go",
|
2021-03-24 15:04:33 +01:00
|
|
|
"cc_library_conversion_test.go",
|
2021-02-18 09:21:34 +01:00
|
|
|
"cc_library_headers_conversion_test.go",
|
2021-09-01 23:22:09 +02:00
|
|
|
"cc_library_shared_conversion_test.go",
|
2021-12-14 21:25:51 +01:00
|
|
|
"cc_library_static_conversion_test.go",
|
2021-02-18 09:21:34 +01:00
|
|
|
"cc_object_conversion_test.go",
|
2022-04-19 16:50:39 +02:00
|
|
|
"cc_prebuilt_library_conversion_test.go",
|
2022-03-07 19:22:42 +01:00
|
|
|
"cc_prebuilt_library_shared_test.go",
|
2022-04-19 16:50:39 +02:00
|
|
|
"cc_prebuilt_library_static_test.go",
|
2022-08-24 13:53:27 +02:00
|
|
|
"cc_test_conversion_test.go",
|
2022-08-08 16:52:27 +02:00
|
|
|
"cc_yasm_conversion_test.go",
|
2020-11-26 01:06:39 +01:00
|
|
|
"conversion_test.go",
|
2021-09-02 13:44:42 +02:00
|
|
|
"filegroup_conversion_test.go",
|
2021-09-08 16:36:41 +02:00
|
|
|
"genrule_conversion_test.go",
|
2022-06-08 16:57:04 +02:00
|
|
|
"gensrcs_conversion_test.go",
|
2022-03-07 19:22:42 +01:00
|
|
|
"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",
|
2022-08-04 22:28:38 +02:00
|
|
|
"license_conversion_test.go",
|
2022-09-14 22:40:03 +02:00
|
|
|
"license_kind_conversion_test.go",
|
2022-06-02 22:00:54 +02:00
|
|
|
"linker_config_conversion_test.go",
|
2022-08-16 02:55:11 +02:00
|
|
|
"ndk_headers_conversion_test.go",
|
2022-08-04 22:31:14 +02:00
|
|
|
"package_conversion_test.go",
|
2021-08-04 21:17:02 +02:00
|
|
|
"performance_test.go",
|
2021-07-28 14:03:16 +02:00
|
|
|
"prebuilt_etc_conversion_test.go",
|
2021-03-08 13:32:28 +01:00
|
|
|
"python_binary_conversion_test.go",
|
2021-08-19 21:21:30 +02:00
|
|
|
"python_library_conversion_test.go",
|
2021-02-11 04:40:05 +01:00
|
|
|
"sh_conversion_test.go",
|
2021-12-14 21:25:51 +01:00
|
|
|
"soong_config_module_type_conversion_test.go",
|
2020-11-26 01:06:39 +01:00
|
|
|
],
|
|
|
|
pluginFor: [
|
|
|
|
"soong_build",
|
|
|
|
],
|
|
|
|
}
|