blob: 33549930605fe74fe9b42af7bd1ddb73ac5f8ef4 [file] [log] [blame]
Kiyoung Kim48f37782021-07-07 12:42:39 +09001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5bootstrap_go_package {
6 name: "soong-snapshot",
7 pkgPath: "android/soong/snapshot",
8 deps: [
9 "blueprint",
10 "blueprint-pathtools",
11 "soong",
12 "soong-android",
13 ],
Rob Seymour925aa092021-08-10 20:42:03 +000014 // Source file name convention is to include _snapshot as a
15 // file suffix for files that are generating snapshots.
Kiyoung Kim48f37782021-07-07 12:42:39 +090016 srcs: [
Rob Seymour925aa092021-08-10 20:42:03 +000017 "host_fake_snapshot.go",
18 "host_snapshot.go",
Kiyoung Kim48f37782021-07-07 12:42:39 +090019 "recovery_snapshot.go",
20 "snapshot.go",
21 "snapshot_base.go",
Kiyoung Kimae11c232021-07-19 11:38:04 +090022 "util.go",
Kiyoung Kim48f37782021-07-07 12:42:39 +090023 "vendor_snapshot.go",
24 ],
Rob Seymour925aa092021-08-10 20:42:03 +000025 testSrcs: [
26 "host_test.go",
27 "test.go",
28 ],
Kiyoung Kim48f37782021-07-07 12:42:39 +090029 pluginFor: ["soong_build"],
30}