2017-02-12 07:50:02 +01:00
|
|
|
ndk_headers {
|
|
|
|
name: "libsync_headers",
|
|
|
|
from: "include/ndk",
|
|
|
|
to: "android",
|
|
|
|
srcs: ["include/ndk/sync.h"],
|
|
|
|
license: "NOTICE",
|
|
|
|
}
|
|
|
|
|
|
|
|
ndk_library {
|
2017-04-10 21:58:03 +02:00
|
|
|
name: "libsync",
|
2017-02-12 07:50:02 +01:00
|
|
|
symbol_file: "libsync.map.txt",
|
|
|
|
first_version: "26",
|
|
|
|
}
|
|
|
|
|
2016-08-27 00:01:36 +02:00
|
|
|
cc_defaults {
|
|
|
|
name: "libsync_defaults",
|
|
|
|
srcs: ["sync.c"],
|
|
|
|
local_include_dirs: ["include"],
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
cflags: ["-Werror"],
|
|
|
|
}
|
|
|
|
|
2018-08-07 19:55:27 +02:00
|
|
|
cc_library {
|
2016-08-27 00:01:36 +02:00
|
|
|
name: "libsync",
|
2018-08-07 19:55:27 +02:00
|
|
|
recovery_available: true,
|
2019-05-14 14:39:15 +02:00
|
|
|
native_bridge_supported: true,
|
2016-08-27 00:01:36 +02:00
|
|
|
defaults: ["libsync_defaults"],
|
2020-06-05 09:01:03 +02:00
|
|
|
stubs: {
|
|
|
|
symbol_file: "libsync.map.txt",
|
|
|
|
versions: [
|
|
|
|
"26",
|
|
|
|
],
|
|
|
|
},
|
2016-08-27 00:01:36 +02:00
|
|
|
}
|
|
|
|
|
2017-08-14 08:21:28 +02:00
|
|
|
llndk_library {
|
|
|
|
name: "libsync",
|
|
|
|
symbol_file: "libsync.map.txt",
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
}
|
|
|
|
|
2016-08-27 00:01:36 +02:00
|
|
|
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",
|
|
|
|
],
|
|
|
|
}
|