34 lines
611 B
Plaintext
34 lines
611 B
Plaintext
|
//
|
||
|
// Copyright (C) 2022 The LineageOS-UL Project
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
//
|
||
|
|
||
|
cc_binary {
|
||
|
name: "android.hardware.audio.service.samsung8974",
|
||
|
|
||
|
init_rc: ["android.hardware.audio.service.samsung8974.rc"],
|
||
|
relative_install_path: "hw",
|
||
|
vendor: true,
|
||
|
|
||
|
srcs: ["service.cpp"],
|
||
|
|
||
|
cflags: [
|
||
|
"-Wall",
|
||
|
"-Wextra",
|
||
|
"-Werror",
|
||
|
],
|
||
|
|
||
|
shared_libs: [
|
||
|
"libcutils",
|
||
|
"libbinder",
|
||
|
"libhidlbase",
|
||
|
"liblog",
|
||
|
"libutils",
|
||
|
"libhardware",
|
||
|
],
|
||
|
|
||
|
defaults: [
|
||
|
"android_hardware_audio_config_defaults",
|
||
|
],
|
||
|
}
|