37693d0a27
Existing snapshot code will no longer work from VNDK deprecation, but it can give confusion to users if we keep code for the snapshot - and it adds complexity on existing code while it is not in use. This change removes all snapshot definition except host snapshot and its usage. Bug: 330100430 Bug: 332986564 Test: AOSP CF build succeeded Change-Id: Ieb6fa43d5e38315c662ce997bc305b744b367c24
113 lines
2.4 KiB
Text
113 lines
2.4 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-aconfig",
|
|
"soong-aidl-library",
|
|
"soong-android",
|
|
"soong-cc-config",
|
|
"soong-etc",
|
|
"soong-fuzz",
|
|
"soong-genrule",
|
|
"soong-multitree",
|
|
"soong-testing",
|
|
"soong-tradefed",
|
|
],
|
|
srcs: [
|
|
"afdo.go",
|
|
"fdo_profile.go",
|
|
"androidmk.go",
|
|
"api_level.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",
|
|
"orderfile.go",
|
|
"prebuilt.go",
|
|
"proto.go",
|
|
"rs.go",
|
|
"sanitize.go",
|
|
"sabi.go",
|
|
"sdk.go",
|
|
"snapshot_prebuilt.go",
|
|
"stl.go",
|
|
"strip.go",
|
|
"tidy.go",
|
|
"util.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",
|
|
"orderfile_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",
|
|
],
|
|
pluginFor: ["soong_build"],
|
|
}
|