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

Commit d2f59463 authored by Sasha Smundak's avatar Sasha Smundak Committed by Jakub Pawlowski
Browse files

Convert Android.mk file to Android.bp

See build/soong/README.md for more information.

Change-Id: Ida03ab11c7fa6148fa5711ce1770b6951e831412
Fixes: 122332236
Test: treehugger
parent bfa04dd3
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)