31 lines
709 B
Plaintext
31 lines
709 B
Plaintext
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: [
|
|
"host_fake_snapshot.go",
|
|
"host_snapshot.go",
|
|
"recovery_snapshot.go",
|
|
"snapshot.go",
|
|
"snapshot_base.go",
|
|
"util.go",
|
|
"vendor_snapshot.go",
|
|
],
|
|
testSrcs: [
|
|
"host_test.go",
|
|
"test.go",
|
|
],
|
|
pluginFor: ["soong_build"],
|
|
}
|