blob: e8c6c071bc06c7dcedcb087a099f91c7ebd36357 [file] [log] [blame]
Bob Badour051ef782021-02-12 17:07:05 -08001package {
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
Colin Cross3ac2be92016-12-14 13:06:07 -080018cc_library_static {
19 name: "libstorage",
20
21 srcs: [
22 "IMountServiceListener.cpp",
23 "IMountShutdownObserver.cpp",
24 "IObbActionListener.cpp",
25 "IMountService.cpp",
Sudheer Shanka25469aa2018-08-27 15:50:23 -070026 "ObbInfo.cpp",
Colin Cross3ac2be92016-12-14 13:06:07 -080027 ],
28
29 export_include_dirs: ["include"],
30
31 cflags: [
32 "-Wall",
33 "-Werror",
34 ],
35
36 shared_libs: ["libbinder"],
37}