1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
bootstrap_go_package {
name: "soong-fsgen",
pkgPath: "android/soong/fsgen",
deps: [
"blueprint",
"soong",
"soong-android",
"soong-filesystem",
"soong-kernel",
],
srcs: [
"boot_imgs.go",
"config.go",
"filesystem_creator.go",
"fsgen_mutators.go",
"prebuilt_etc_modules_gen.go",
"super_img.go",
"util.go",
"vbmeta_partitions.go",
],
testSrcs: [
"filesystem_creator_test.go",
],
pluginFor: ["soong_build"],
visibility: ["//visibility:public"],
}
soong_filesystem_creator {
name: "soong_filesystem_creator",
}
|