• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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        "recovery_snapshot.go",
20        "snapshot.go",
21        "snapshot_base.go",
22        "util.go",
23        "vendor_snapshot.go",
24    ],
25    testSrcs: [
26        "host_test.go",
27        "test.go",
28    ],
29    pluginFor: ["soong_build"],
30}
31