6a2b16693c
Instead of assuming a module with the .llndk suffix exists, add an llndk_stubs property to every cc_library module that has a corresponding llndk_library. Also rename the llndk_library to have an explicit .llndk suffix. Bug: 170784825 Test: no changes to build.ninja (excluding comments) or Android-${TARGET_PRODUCT}.mk Change-Id: Ifba79a1ae64a67a9d7393dac2fb012cd8af8e149
54 lines
1 KiB
Text
54 lines
1 KiB
Text
ndk_headers {
|
|
name: "libsync_headers",
|
|
from: "include/ndk",
|
|
to: "android",
|
|
srcs: ["include/ndk/sync.h"],
|
|
license: "NOTICE",
|
|
}
|
|
|
|
ndk_library {
|
|
name: "libsync",
|
|
symbol_file: "libsync.map.txt",
|
|
first_version: "26",
|
|
}
|
|
|
|
cc_defaults {
|
|
name: "libsync_defaults",
|
|
srcs: ["sync.c"],
|
|
local_include_dirs: ["include"],
|
|
export_include_dirs: ["include"],
|
|
cflags: ["-Werror"],
|
|
}
|
|
|
|
cc_library {
|
|
name: "libsync",
|
|
recovery_available: true,
|
|
native_bridge_supported: true,
|
|
defaults: ["libsync_defaults"],
|
|
llndk_stubs: "libsync.llndk",
|
|
stubs: {
|
|
symbol_file: "libsync.map.txt",
|
|
versions: [
|
|
"26",
|
|
],
|
|
},
|
|
}
|
|
|
|
llndk_library {
|
|
name: "libsync.llndk",
|
|
symbol_file: "libsync.map.txt",
|
|
export_include_dirs: ["include"],
|
|
}
|
|
|
|
cc_test {
|
|
name: "sync-unit-tests",
|
|
shared_libs: ["libsync"],
|
|
srcs: ["tests/sync_test.cpp"],
|
|
cflags: [
|
|
"-g",
|
|
"-Wall",
|
|
"-Werror",
|
|
"-Wno-missing-field-initializers",
|
|
"-Wno-sign-compare",
|
|
],
|
|
}
|