aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorTaylor Holberton <tay10r@protonmail.com>2020-02-11 14:03:06 -0500
committerGitHub <noreply@github.com>2020-02-11 14:03:06 -0500
commit5389c1f796ea153232a582bd28e73be43638a124 (patch)
tree21c980b1636350b75d1490bad5b9c62c82318f12 /Android.bp
parent80beaac3f4962f528abaa08f067c58183011c93b (diff)
parente7c627dd74f5d43439792491c291564e298cbb10 (diff)
Merge pull request #137 from codeauroraforum/plugin-support
Plugin support
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp7
1 files changed, 7 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 0d4122d..f316df9 100644
--- a/Android.bp
+++ b/Android.bp
@@ -4,7 +4,12 @@ cc_library {
vendor_available: true,
srcs: [
"src/mixer.c",
+ "src/mixer_hw.c",
+ "src/mixer_plugin.c",
"src/pcm.c",
+ "src/pcm_hw.c",
+ "src/pcm_plugin.c",
+ "src/snd_card_plugin.c",
],
cflags: ["-Werror", "-Wno-macro-redefined"],
export_include_dirs: ["include"],
@@ -15,6 +20,8 @@ cc_library {
enabled: false,
},
},
+
+ system_shared_libs: ["libc", "libdl"],
}
cc_binary {