blob: 2e9701f8b0f2fdf5776b96102f57c20ee8614ed0 [file] [log] [blame]
cc_defaults {
name: "installd_defaults",
cflags: [
"-Wall",
"-Werror",
"-Wextra",
"-Wunreachable-code",
"-Wunreachable-code-break",
"-Wunreachable-code-return",
],
srcs: [
"CacheItem.cpp",
"CacheTracker.cpp",
"InstalldNativeService.cpp",
"QuotaUtils.cpp",
"dexopt.cpp",
"globals.cpp",
"utils.cpp",
":installd_aidl",
],
header_libs: [
"dex2oat_headers",
],
shared_libs: [
"libbase",
"libbinder",
"libcrypto",
"libcutils",
"liblog",
"liblogwrap",
"libselinux",
"libutils",
],
product_variables: {
arc: {
exclude_srcs: [
"QuotaUtils.cpp",
],
static_libs: [
"libarcdiskquota",
"arc_services_aidl",
],
cflags: [
"-DUSE_ARC",
],
},
},
clang: true,
tidy: true,
tidy_checks: [
"-*",
"clang-analyzer-security*",
"cert-*",
"-cert-err58-cpp",
],
tidy_flags: [
"-warnings-as-errors=clang-analyzer-security*,cert-*"
],
}
//
// Static library used in testing and executable
//
cc_library_static {
name: "libinstalld",
defaults: ["installd_defaults"],
export_include_dirs: ["."],
aidl: {
export_aidl_headers: true,
},
product_variables: {
arc: {
exclude_srcs: [
"QuotaUtils.cpp",
],
static_libs: [
"libarcdiskquota",
"arc_services_aidl",
],
cflags: [
"-DUSE_ARC",
],
},
},
}
cc_library_headers {
name: "libinstalld_headers",
export_include_dirs: ["."],
}
//
// Executable
//
cc_binary {
name: "installd",
defaults: ["installd_defaults"],
srcs: ["installd.cpp"],
static_libs: ["libdiskusage"],
init_rc: ["installd.rc"],
product_variables: {
arc: {
exclude_srcs: [
"QuotaUtils.cpp",
],
static_libs: [
"libarcdiskquota",
"arc_services_aidl",
],
cflags: [
"-DUSE_ARC",
],
},
},
}
// OTA chroot tool
cc_binary {
name: "otapreopt_chroot",
cflags: [
"-Wall",
"-Werror",
],
clang: true,
srcs: ["otapreopt_chroot.cpp"],
shared_libs: [
"libbase",
"liblog",
],
}
filegroup {
name: "installd_aidl",
srcs: [
"binder/android/os/IInstalld.aidl",
],
}
//
// Static library for otapreopt used in testing
//
cc_library_static {
name: "libotapreoptparameters",
cflags: [
"-Wall",
"-Werror"
],
srcs: ["otapreopt_parameters.cpp"],
export_include_dirs: ["."],
shared_libs: [
"libbase",
"libcutils",
"liblog",
"libutils",
],
}
//
// OTA Executable
//
cc_binary {
name: "otapreopt",
cflags: [
"-Wall",
"-Werror"
],
srcs: [
"dexopt.cpp",
"globals.cpp",
"otapreopt.cpp",
"utils.cpp",
],
header_libs: ["dex2oat_headers"],
static_libs: [
"libartimagevalues",
"libdiskusage",
"libotapreoptparameters",
],
shared_libs: [
"libbase",
"libcrypto",
"libcutils",
"liblog",
"liblogwrap",
"libselinux",
"libutils",
],
}