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
26 lines
605 B
Text
26 lines
605 B
Text
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
bootstrap_go_package {
|
|
name: "soong-snapshot",
|
|
pkgPath: "android/soong/snapshot",
|
|
deps: [
|
|
"blueprint",
|
|
"blueprint-pathtools",
|
|
"soong",
|
|
"soong-android",
|
|
],
|
|
// Source file name convention is to include _snapshot as a
|
|
// file suffix for files that are generating snapshots.
|
|
srcs: [
|
|
"host_fake_snapshot.go",
|
|
"host_snapshot.go",
|
|
"snapshot_base.go",
|
|
"util.go",
|
|
],
|
|
testSrcs: [
|
|
"host_test.go",
|
|
],
|
|
pluginFor: ["soong_build"],
|
|
}
|