blob: 6cb318e53cb84f739e6e061724cb8ea72b88620a [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 "snapshot_base.go",
Kiyoung Kimae11c232021-07-19 11:38:04 +090020 "util.go",
Kiyoung Kim48f37782021-07-07 12:42:39 +090021 ],
Rob Seymour925aa092021-08-10 20:42:03 +000022 testSrcs: [
23 "host_test.go",
Rob Seymour925aa092021-08-10 20:42:03 +000024 ],
Kiyoung Kim48f37782021-07-07 12:42:39 +090025 pluginFor: ["soong_build"],
26}