Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a318b1bc authored by Sasha Smundak's avatar Sasha Smundak Committed by android-build-merger
Browse files

Convert Android.mk file to Android.bp

am: d2f59463

Change-Id: I8905a9c28b9fc76083655bda05145559b1a15162
parents 07f67215 d2f59463
Loading
Loading
Loading
Loading

Android.mk

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
include $(call all-subdir-makefiles)

system/conf/Android.bp

0 → 100644
+15 −0
Original line number Diff line number Diff line
// Bluetooth bt_stack.conf config file
// ========================================================
prebuilt_etc {
    name: "bt_stack.conf",
    src: "bt_stack.conf",
    sub_dir: "bluetooth",
}

// Bluetooth bt_did.conf config file
// ========================================================
prebuilt_etc {
    name: "bt_did.conf",
    src: "bt_did.conf",
    sub_dir: "bluetooth",
}

system/conf/Android.mk

deleted100644 → 0
+0 −24
Original line number Diff line number Diff line
# Cannot convert to Android.bp as resource copying has not
# yet implemented for soong as of 12/16/2016
LOCAL_PATH := $(call my-dir)

# Bluetooth bt_stack.conf config file
# ========================================================
include $(CLEAR_VARS)
LOCAL_MODULE := bt_stack.conf
LOCAL_MODULE_CLASS := ETC
LOCAL_MODULE_PATH := $(TARGET_OUT)/etc/bluetooth
LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := $(LOCAL_MODULE)
include $(BUILD_PREBUILT)

# Bluetooth bt_did.conf config file
# ========================================================
include $(CLEAR_VARS)
LOCAL_MODULE := bt_did.conf
LOCAL_MODULE_CLASS := ETC
LOCAL_MODULE_PATH := $(TARGET_OUT)/etc/bluetooth
LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := $(LOCAL_MODULE)
include $(BUILD_PREBUILT)