c23aeb8414
Building with USE_SOONG=true will build with an Android.bp file if it is present in the directory, otherwise an Android.mk file. Only a few of the bionic directories compile with soong, so include all of them from the top level Android.mk file and remove the top level Android.bp file. Individual subdirectories with Android.bp files will use soong with USE_SOONG=true. Change-Id: Idf8d7977ea4668fa646be25b543bf9d3773de615
20 lines
735 B
Makefile
20 lines
735 B
Makefile
#
|
|
# Copyright (C) 2008 The Android Open Source 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-makefiles-under,$(LOCAL_PATH)) \
|
|
$(call all-makefiles-under,$(LOCAL_PATH)/libc)
|