summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Bestas <mkbestas@lineageos.org>2020-12-31 16:40:18 +0200
committerMichael Bestas <mkbestas@lineageos.org>2020-12-31 16:43:23 +0200
commit89a6bb94785cc34649ca847f5df2375211ce4fee (patch)
tree0bfb2827eae910b5c6d662e75329c85f45988af3
parent493a7e6e67fec720b8880945aa95b742d31e97ac (diff)
AudioFX: Convert to Android.bp
Change-Id: I04f675b7e62fe0b8af60b5ff6734a55184ac0cef
-rw-r--r--Android.bp46
-rw-r--r--Android.mk37
2 files changed, 46 insertions, 37 deletions
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..3ae5d0b
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,46 @@
+//
+// 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.
+//
+
+android_app {
+ name: "AudioFX",
+
+ srcs: ["src/**/*.java"],
+
+ resource_dirs: ["res"],
+
+ static_libs: [
+ "androidx.core_core",
+ "androidx.legacy_legacy-support-v4",
+ "org.lineageos.platform.internal",
+ ],
+
+ platform_apis: true,
+ privileged: true,
+ certificate: "platform",
+
+ optimize: {
+ enabled: false,
+ },
+
+ required: ["privapp_whitelist_org.lineageos.audiofx"],
+}
+
+prebuilt_etc {
+ name: "privapp_whitelist_org.lineageos.audiofx",
+ src: "privapp_whitelist_org.lineageos.audiofx.xml",
+ sub_dir: "permissions",
+ filename_from_src: true,
+}
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index 69479e4..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,37 +0,0 @@
-LOCAL_PATH := $(call my-dir)
-
-include $(CLEAR_VARS)
-LOCAL_PACKAGE_NAME := AudioFX
-LOCAL_MODULE_TAGS := optional
-
-LOCAL_SRC_FILES := $(call all-java-files-under, src)
-
-LOCAL_STATIC_ANDROID_LIBRARIES := \
- androidx.core_core \
- androidx.legacy_legacy-support-v4
-
-LOCAL_STATIC_JAVA_LIBRARIES := \
- org.lineageos.platform.internal
-
-LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
-LOCAL_USE_AAPT2 := true
-
-LOCAL_PROGUARD_ENABLED := disabled
-
-LOCAL_PRIVATE_PLATFORM_APIS := true
-
-LOCAL_PRIVILEGED_MODULE := true
-
-LOCAL_CERTIFICATE := platform
-
-LOCAL_REQUIRED_MODULES := privapp_whitelist_org.lineageos.audiofx.xml
-
-include $(BUILD_PACKAGE)
-
-include $(CLEAR_VARS)
-LOCAL_MODULE := privapp_whitelist_org.lineageos.audiofx.xml
-LOCAL_MODULE_CLASS := ETC
-LOCAL_MODULE_TAGS := optional
-LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/permissions
-LOCAL_SRC_FILES := $(LOCAL_MODULE)
-include $(BUILD_PREBUILT)