exynos9610: Migrate libaudioproxy to Blueprint
authorNolen Johnson <johnsonnolen@gmail.com>
Wed, 20 Nov 2024 21:53:31 +0000 (16:53 -0500)
committerNolen Johnson <johnsonnolen@gmail.com>
Wed, 20 Nov 2024 21:56:22 +0000 (21:56 +0000)
Change-Id: I26df1f3aed0468347273c40feae9353b1f3c74cb

shims/Android.mk [deleted file]
shims/libaudioproxy/Android.bp [new file with mode: 0644]
shims/libaudioproxy/Android.mk [deleted file]

diff --git a/shims/Android.mk b/shims/Android.mk
deleted file mode 100644 (file)
index 23e21b6..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#
-# Copyright (C) 2020 The LineageOS Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-LOCAL_PATH := $(call my-dir)
-
-include $(call all-subdir-makefiles,$(LOCAL_PATH))
diff --git a/shims/libaudioproxy/Android.bp b/shims/libaudioproxy/Android.bp
new file mode 100644 (file)
index 0000000..dd54e2f
--- /dev/null
@@ -0,0 +1,20 @@
+//
+// Copyright (C) 2020 The LineageOS Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+cc_library_shared {
+    name: "libaudioproxy_shim",
+    srcs: ["shim.cpp"],
+    proprietary: true,
+}
diff --git a/shims/libaudioproxy/Android.mk b/shims/libaudioproxy/Android.mk
deleted file mode 100644 (file)
index 81625a3..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#
-# Copyright (C) 2020 The LineageOS Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-LOCAL_PATH := $(call my-dir)
-
-include $(CLEAR_VARS)
-LOCAL_SRC_FILES := shim.cpp
-
-LOCAL_MODULE := libaudioproxy_shim
-LOCAL_MODULE_TAGS := optional
-LOCAL_MODULE_CLASS := SHARED_LIBRARIES
-LOCAL_PROPRIETARY_MODULE := true
-
-include $(BUILD_SHARED_LIBRARY)