blob: e3cbdb3755491c67867d83be12ca34cc286db30a [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: [
16 "filesystem_creator.go",
17 ],
18 testSrcs: [
19 "filesystem_creator_test.go",
20 ],
21 pluginFor: ["soong_build"],
Jihoon Kang26cfe3c2024-10-30 18:53:51 +000022 visibility: ["//visibility:public"],
Jihoon Kang98047cf2024-10-02 17:13:54 +000023}
Cole Faust92ccbe22024-10-03 14:38:37 -070024
25soong_filesystem_creator {
26 name: "soong_filesystem_creator",
27}