33 lines
529 B
Plaintext
33 lines
529 B
Plaintext
// Builds libcasutil.a
|
|
cc_library_static {
|
|
|
|
name: "libcasutil",
|
|
|
|
proprietary: true,
|
|
|
|
local_include_dirs: [
|
|
"include",
|
|
],
|
|
|
|
// Filestore support is needed for building unit tests.
|
|
|
|
srcs: [
|
|
"src/clock.cpp",
|
|
"src/log.cpp",
|
|
"src/file_store.cpp",
|
|
"src/file_utils.cpp",
|
|
"src/rw_lock.cpp",
|
|
"src/string_conversions.cpp",
|
|
"src/android_properties.cpp",
|
|
"src/timer.cpp",
|
|
],
|
|
|
|
shared_libs: [
|
|
"liblog",
|
|
"libutils",
|
|
"libcrypto",
|
|
],
|
|
|
|
export_include_dirs: ["include"],
|
|
}
|