2021-02-17 04:02:14 +01:00
|
|
|
package {
|
|
|
|
default_applicable_licenses: ["system_core_libsync_license"],
|
|
|
|
}
|
|
|
|
|
|
|
|
// Added automatically by a large-scale-change
|
|
|
|
// See: http://go/android-license-faq
|
|
|
|
license {
|
|
|
|
name: "system_core_libsync_license",
|
|
|
|
visibility: [":__subpackages__"],
|
|
|
|
license_kinds: [
|
|
|
|
"SPDX-license-identifier-Apache-2.0",
|
|
|
|
],
|
|
|
|
license_text: [
|
|
|
|
"NOTICE",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
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",
|
2022-09-08 23:59:20 +02:00
|
|
|
export_header_libs: [
|
|
|
|
"libsync_headers",
|
|
|
|
],
|
2017-02-12 07:50:02 +01:00
|
|
|
}
|
|
|
|
|
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"],
|
2021-04-22 04:13:41 +02:00
|
|
|
llndk: {
|
|
|
|
symbol_file: "libsync.map.txt",
|
|
|
|
},
|
2020-06-05 09:01:03 +02:00
|
|
|
stubs: {
|
|
|
|
symbol_file: "libsync.map.txt",
|
|
|
|
versions: [
|
|
|
|
"26",
|
|
|
|
],
|
|
|
|
},
|
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",
|
|
|
|
],
|
|
|
|
}
|