Merge "Use Android.soong.mk to handle mixed Android.mk and Android.bp dirs"
This commit is contained in:
commit
79d0281456
5 changed files with 13 additions and 2 deletions
2
Android.bp
Normal file
2
Android.bp
Normal file
|
@ -0,0 +1,2 @@
|
|||
subdirs = ["*"]
|
||||
|
|
@ -16,5 +16,4 @@
|
|||
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
include $(call all-makefiles-under,$(LOCAL_PATH)) \
|
||||
$(call all-makefiles-under,$(LOCAL_PATH)/libc)
|
||||
include $(call all-makefiles-under,$(LOCAL_PATH))
|
||||
|
|
4
Android.soong.mk
Normal file
4
Android.soong.mk
Normal file
|
@ -0,0 +1,4 @@
|
|||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
include $(call all-makefiles-under,$(LOCAL_PATH))
|
||||
|
|
@ -1477,3 +1477,5 @@ LOCAL_SYSTEM_SHARED_LIBRARIES := libc
|
|||
LOCAL_SANITIZE := never
|
||||
LOCAL_NATIVE_COVERAGE := $(bionic_coverage)
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
include $(call all-makefiles-under,$(LOCAL_PATH))
|
||||
|
|
4
libc/Android.soong.mk
Normal file
4
libc/Android.soong.mk
Normal file
|
@ -0,0 +1,4 @@
|
|||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
include $(call all-makefiles-under,$(LOCAL_PATH))
|
||||
|
Loading…
Reference in a new issue