37f900ca7f
The generated module lets us keep the aconfig code in its own pacakge and not infect all of the cc package with aconfig. It's also closer to what bazel is going to do Bug: 283479529 Test: m aconfig_hello_world_cc && adb push $TOP/out/target/product/panther/system/bin/aconfig_hello_world_cc /system/bin && adb shell aconfig_hello_world_cc Change-Id: I2fb9e419939c7ca77b111da9c376af077e2348a9
117 lines
2.5 KiB
Text
117 lines
2.5 KiB
Text
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
bootstrap_go_package {
|
|
name: "soong-cc",
|
|
pkgPath: "android/soong/cc",
|
|
deps: [
|
|
"blueprint",
|
|
"blueprint-pathtools",
|
|
"soong",
|
|
"soong-aidl-library",
|
|
"soong-android",
|
|
"soong-bazel",
|
|
"soong-cc-config",
|
|
"soong-etc",
|
|
"soong-fuzz",
|
|
"soong-genrule",
|
|
"soong-multitree",
|
|
"soong-snapshot",
|
|
"soong-tradefed",
|
|
],
|
|
srcs: [
|
|
"afdo.go",
|
|
"fdo_profile.go",
|
|
"androidmk.go",
|
|
"api_level.go",
|
|
"bp2build.go",
|
|
"builder.go",
|
|
"cc.go",
|
|
"ccdeps.go",
|
|
"check.go",
|
|
"coverage.go",
|
|
"gen.go",
|
|
"generated_cc_library.go",
|
|
"image.go",
|
|
"linkable.go",
|
|
"lto.go",
|
|
"makevars.go",
|
|
"pgo.go",
|
|
"prebuilt.go",
|
|
"proto.go",
|
|
"rs.go",
|
|
"sanitize.go",
|
|
"sabi.go",
|
|
"sdk.go",
|
|
"snapshot_prebuilt.go",
|
|
"snapshot_utils.go",
|
|
"stl.go",
|
|
"strip.go",
|
|
"sysprop.go",
|
|
"tidy.go",
|
|
"util.go",
|
|
"vendor_snapshot.go",
|
|
"vndk.go",
|
|
"vndk_prebuilt.go",
|
|
|
|
"cmakelists.go",
|
|
"compdb.go",
|
|
"compiler.go",
|
|
"installer.go",
|
|
"linker.go",
|
|
|
|
"binary.go",
|
|
"binary_sdk_member.go",
|
|
"fuzz.go",
|
|
"image_sdk_traits.go",
|
|
"library.go",
|
|
"library_headers.go",
|
|
"library_sdk_member.go",
|
|
"library_stub.go",
|
|
"native_bridge_sdk_trait.go",
|
|
"object.go",
|
|
"test.go",
|
|
|
|
"ndk_abi.go",
|
|
"ndk_headers.go",
|
|
"ndk_library.go",
|
|
"ndk_prebuilt.go",
|
|
"ndk_sysroot.go",
|
|
|
|
"llndk_library.go",
|
|
|
|
"kernel_headers.go",
|
|
|
|
"genrule.go",
|
|
|
|
"vendor_public_library.go",
|
|
|
|
"testing.go",
|
|
|
|
"stub_library.go",
|
|
],
|
|
testSrcs: [
|
|
"afdo_test.go",
|
|
"binary_test.go",
|
|
"cc_test.go",
|
|
"compiler_test.go",
|
|
"gen_test.go",
|
|
"genrule_test.go",
|
|
"library_headers_test.go",
|
|
"library_stub_test.go",
|
|
"library_test.go",
|
|
"lto_test.go",
|
|
"ndk_test.go",
|
|
"object_test.go",
|
|
"prebuilt_test.go",
|
|
"proto_test.go",
|
|
"sanitize_test.go",
|
|
"sdk_test.go",
|
|
"test_data_test.go",
|
|
"tidy_test.go",
|
|
"vendor_public_library_test.go",
|
|
"vendor_snapshot_test.go",
|
|
],
|
|
pluginFor: ["soong_build"],
|
|
}
|