Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c06c6873 authored by Jaesoo Lee's avatar Jaesoo Lee
Browse files

configstore: build configstore-utils as header library

This change makes android.hardware.configstore-utils library built as
a header-only library instead of a static library.

Design doc: go/design-confighal
Bug: 35397068
Test: build, run

Change-Id: I59c7c8802aeb1fb687af24cfdb2bbb38723e6221
Merged-In: Idee48816a1a271bdb9ba8cf907d98c3823925da4
parent cb71410f
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -14,15 +14,14 @@
// limitations under the License.
//

cc_library_static {
cc_library_headers {
    name: "android.hardware.configstore-utils",
    defaults: ["hidl_defaults"],
    export_include_dirs: ["include"],
    srcs: [],
    shared_libs: [
        "android.hardware.configstore@1.0",
        "libhidlbase"
    ],
    export_shared_lib_headers: [
        "android.hardware.configstore@1.0",
        "libhidlbase"
    ],
}