aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarish Mahendrakar <harish.mahendrakar@ittiam.com>2020-09-23 18:05:41 -0700
committerHarish Mahendrakar <harish.mahendrakar@ittiam.com>2020-09-29 22:04:31 +0000
commit1915e687eb07bced758a5d6de96192ffd0c36554 (patch)
tree94fd7c850ab1f1877fac55bcdc3f20ce6a0e8347
parent3298dd5e826ec4ad35e51a064edb81085c1bd7de (diff)
downloadlibsrtp2-1915e687eb07bced758a5d6de96192ffd0c36554.tar.gz
Mark libsrtp2 as vendor module
Also added visibility to libsrtp2 to restrict it to webrtc based modules Bug: 169202556 Test: Builds Change-Id: I2cf6f06d49d4ad4206a9eff84e3aaac71ce34d6c
-rw-r--r--Android.bp6
1 files changed, 6 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 785a441..b18e80b 100644
--- a/Android.bp
+++ b/Android.bp
@@ -1,5 +1,7 @@
cc_library_static {
host_supported: true,
+ // vendor needed for libpreprocessing effects.
+ vendor: true,
name: "libsrtp2",
srcs: [
"crypto/cipher/aes.c",
@@ -36,4 +38,8 @@ cc_library_static {
"include",
"exported_include",
],
+ visibility: [
+ "//external/webrtc:__subpackages__",
+ "//device/google/cuttlefish/host/frontend/webrtc:__subpackages__",
+ ],
}