blob: 1b828c5d97fc93d8ab0520f50b09d4bea51b274c [file] [log] [blame]
Jihoon Kang98047cf2024-10-02 17:13:54 +00001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5bootstrap_go_package {
6 name: "soong-fsgen",
7 pkgPath: "android/soong/fsgen",
8 deps: [
9 "blueprint",
10 "soong",
11 "soong-android",
12 "soong-filesystem",
Spandan Das5e336422024-11-01 22:31:20 +000013 "soong-kernel",
Jihoon Kang98047cf2024-10-02 17:13:54 +000014 ],
15 srcs: [
Cole Faustf2a6e8b2024-11-14 10:54:48 -080016 "boot_imgs.go",
Jihoon Kang0a453892024-12-09 22:16:26 +000017 "config.go",
Jihoon Kang98047cf2024-10-02 17:13:54 +000018 "filesystem_creator.go",
Jihoon Kangadd2bb22024-11-05 22:29:34 +000019 "fsgen_mutators.go",
20 "prebuilt_etc_modules_gen.go",
mrziwang79730d42024-12-02 22:13:59 -080021 "super_img.go",
Jihoon Kang45893372024-12-04 00:15:36 +000022 "util.go",
Cole Faust3552eb62024-11-06 18:07:26 -080023 "vbmeta_partitions.go",
Jihoon Kang98047cf2024-10-02 17:13:54 +000024 ],
25 testSrcs: [
26 "filesystem_creator_test.go",
27 ],
28 pluginFor: ["soong_build"],
Jihoon Kang26cfe3c2024-10-30 18:53:51 +000029 visibility: ["//visibility:public"],
Jihoon Kang98047cf2024-10-02 17:13:54 +000030}
Cole Faust92ccbe22024-10-03 14:38:37 -070031
32soong_filesystem_creator {
33 name: "soong_filesystem_creator",
34}