From: Nolen Johnson Date: Wed, 20 Nov 2024 21:53:31 +0000 (-0500) Subject: exynos9610: Migrate libaudioproxy to Blueprint X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=5c6679cc49fa993b194b785cdd538d31e49d6f82;p=GitHub%2FLineageOS%2Fandroid_device_motorola_exynos9610-common.git exynos9610: Migrate libaudioproxy to Blueprint Change-Id: I26df1f3aed0468347273c40feae9353b1f3c74cb --- diff --git a/shims/Android.mk b/shims/Android.mk deleted file mode 100644 index 23e21b6..0000000 --- a/shims/Android.mk +++ /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 index 0000000..dd54e2f --- /dev/null +++ b/shims/libaudioproxy/Android.bp @@ -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 index 81625a3..0000000 --- a/shims/libaudioproxy/Android.mk +++ /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)