blob: ae1869a263a6f1811b2d87c4f9809a44700e1f56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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"],
}
|