bf61afb7f7
This CL exports common/global/device/host clang/ld/ldd flags from their Ninja variable initialization locations in cc/config/global.go and cc/config/clang.go to make Bazel's cc_toolchain and Soong's cc actions more consistent with each other. This does not handle env-dependent or arch-specific toolchain flags yet (logic in compiler.go and linker.go). Test: TH Bug: 187086342 Bug: 187084737 Bug: 186628704 Bug: 187857770 Change-Id: Ie403d7cd23f35160897b9dd902c799cbf1bd7f0c
43 lines
1 KiB
Text
43 lines
1 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",
|
|
],
|
|
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",
|
|
],
|
|
}
|