You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
2.2 KiB
109 lines
2.2 KiB
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "frameworks_native_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["frameworks_native_license"],
|
|
}
|
|
|
|
cc_defaults {
|
|
name: "gpuservice_defaults",
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
"-Wformat",
|
|
"-Wthread-safety",
|
|
"-Wunused",
|
|
"-Wunreachable-code",
|
|
],
|
|
}
|
|
|
|
cc_defaults {
|
|
name: "libgpuservice_defaults",
|
|
defaults: ["gpuservice_defaults"],
|
|
cflags: [
|
|
"-DLOG_TAG=\"GpuService\"",
|
|
],
|
|
shared_libs: [
|
|
"libbase",
|
|
"libbinder",
|
|
"libcutils",
|
|
"libgfxstats",
|
|
"libgpumem",
|
|
"libgpumemtracer",
|
|
"libgraphicsenv",
|
|
"liblog",
|
|
"libutils",
|
|
"libvkjson",
|
|
],
|
|
static_libs: [
|
|
"libserviceutils",
|
|
],
|
|
export_static_lib_headers: [
|
|
"libserviceutils",
|
|
],
|
|
export_shared_lib_headers: [
|
|
"libgraphicsenv",
|
|
],
|
|
}
|
|
|
|
cc_defaults {
|
|
name: "libgpuservice_production_defaults",
|
|
defaults: ["libgpuservice_defaults"],
|
|
cflags: [
|
|
"-fvisibility=hidden",
|
|
],
|
|
lto: {
|
|
thin: true,
|
|
},
|
|
whole_program_vtables: true, // Requires ThinLTO
|
|
}
|
|
|
|
filegroup {
|
|
name: "libgpuservice_sources",
|
|
srcs: [
|
|
"GpuService.cpp",
|
|
],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "libgpuservice",
|
|
defaults: ["libgpuservice_production_defaults"],
|
|
export_include_dirs: ["include"],
|
|
srcs: [
|
|
":libgpuservice_sources",
|
|
],
|
|
}
|
|
|
|
cc_defaults {
|
|
name: "libgpuservice_binary",
|
|
defaults: ["gpuservice_defaults"],
|
|
shared_libs: [
|
|
"libbinder",
|
|
"libcutils",
|
|
"liblog",
|
|
"libutils",
|
|
],
|
|
ldflags: ["-Wl,--export-dynamic"],
|
|
}
|
|
|
|
filegroup {
|
|
name: "gpuservice_binary_sources",
|
|
srcs: ["main_gpuservice.cpp"],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "gpuservice",
|
|
defaults: ["libgpuservice_binary"],
|
|
init_rc: ["gpuservice.rc"],
|
|
required: [
|
|
"bpfloader",
|
|
"gpu_mem.o",
|
|
],
|
|
srcs: [":gpuservice_binary_sources"],
|
|
shared_libs: [
|
|
"libgpuservice",
|
|
],
|
|
}
|