1package {
2    default_applicable_licenses: ["frameworks_base_libs_storage_license"],
3}
4
5// Added automatically by a large-scale-change
6// See: http://go/android-license-faq
7license {
8    name: "frameworks_base_libs_storage_license",
9    visibility: [":__subpackages__"],
10    license_kinds: [
11        "SPDX-license-identifier-Apache-2.0",
12    ],
13    license_text: [
14        "NOTICE",
15    ],
16}
17
18cc_library_static {
19    name: "libstorage",
20
21    srcs: [
22        "IMountServiceListener.cpp",
23        "IMountShutdownObserver.cpp",
24        "IObbActionListener.cpp",
25        "IMountService.cpp",
26        "ObbInfo.cpp",
27    ],
28
29    export_include_dirs: ["include"],
30
31    cflags: [
32        "-Wall",
33        "-Werror",
34    ],
35
36    shared_libs: ["libbinder"],
37}
38