1package {
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    ],
14    // Source file name convention is to include _snapshot as a
15    // file suffix for files that are generating snapshots.
16    srcs: [
17        "host_fake_snapshot.go",
18        "host_snapshot.go",
19        "snapshot_base.go",
20        "util.go",
21    ],
22    testSrcs: [
23        "host_test.go",
24    ],
25    pluginFor: ["soong_build"],
26}
27