Files
build_soong/snapshot/Android.bp
Kiyoung Kim ef693fc9bc Remove host_snapshot module
Remove host_snapshot implementation which is no longer in use.

Bug: 332986564
Test: soong build succeeded
Change-Id: I96ee4eb319f380d9f85de7f9716e63513838624c
2024-08-09 07:16:03 +00:00

22 lines
497 B
Plaintext

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: [
"snapshot_base.go",
"util.go",
],
pluginFor: ["soong_build"],
}