StorageManagerService uses DefaultContainerService to obtain ObbInfo for files passed through mountObb() transaction. This change moves this logic to client side and so ObbInfo will be passed as part of mountObb() transaction. Bug: 111838160 Test: atest src/android/os/storage/cts/StorageManagerTest.java Test: atest core/tests/coretests/src/android/os/storage/StorageManagerIntegrationTest.java Test: atest services/tests/servicestests/src/com/android/server/MountServiceTests.java Change-Id: I29aee3aa54a45057df96aae289888161a3e3af71
21 lines
357 B
Plaintext
21 lines
357 B
Plaintext
cc_library_static {
|
|
name: "libstorage",
|
|
|
|
srcs: [
|
|
"IMountServiceListener.cpp",
|
|
"IMountShutdownObserver.cpp",
|
|
"IObbActionListener.cpp",
|
|
"IMountService.cpp",
|
|
"ObbInfo.cpp",
|
|
],
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
|
|
shared_libs: ["libbinder"],
|
|
}
|