summaryrefslogtreecommitdiff
path: root/filesystem/Android.bp
blob: 38684d3b230f4ea092b397041f5f529ef3f865be (plain)
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
package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

bootstrap_go_package {
    name: "soong-filesystem",
    pkgPath: "android/soong/filesystem",
    deps: [
        "blueprint",
        "soong",
        "soong-android",
        "soong-linkerconfig",
    ],
    srcs: [
        "bootimg.go",
        "filesystem.go",
        "logical_partition.go",
        "system_image.go",
        "vbmeta.go",
        "testing.go",
    ],
    testSrcs: [
        "filesystem_test.go",
    ],
    pluginFor: ["soong_build"],
}