82c4cb74c6
Bug: 169581727 Test: build Change-Id: I865553ae07bc6eac3b90f87a494537102c398280
56 lines
1.3 KiB
Makefile
56 lines
1.3 KiB
Makefile
ifeq ($(filter address,$(SANITIZE_HOST)),)
|
|
NINJA ?= prebuilts/build-tools/$(HOST_PREBUILT_TAG)/bin/ninja
|
|
else
|
|
NINJA ?= prebuilts/build-tools/$(HOST_PREBUILT_TAG)/asan/bin/ninja
|
|
endif
|
|
|
|
KATI_OUTPUT_PATTERNS := $(OUT_DIR)/build%.ninja $(OUT_DIR)/ninja%.sh
|
|
|
|
# Modifier goals we don't need to pass to Ninja.
|
|
NINJA_EXCLUDE_GOALS := all
|
|
|
|
# A list of goals which affect parsing of makefiles and we need to pass to Kati.
|
|
PARSE_TIME_MAKE_GOALS := \
|
|
$(PARSE_TIME_MAKE_GOALS) \
|
|
$(dont_bother_goals) \
|
|
all \
|
|
ECLIPSE-% \
|
|
brillo_tests \
|
|
btnod \
|
|
build-art% \
|
|
build_kernel-nodeps \
|
|
clean-oat% \
|
|
continuous_instrumentation_tests \
|
|
continuous_native_tests \
|
|
cts \
|
|
custom_images \
|
|
dicttool_aosp \
|
|
dump-products \
|
|
eng \
|
|
oem_image \
|
|
online-system-api-sdk-docs \
|
|
product-graph \
|
|
samplecode \
|
|
sdk \
|
|
sdk_addon \
|
|
sdk_repo \
|
|
stnod \
|
|
test-art% \
|
|
user \
|
|
userdataimage \
|
|
userdebug \
|
|
win_sdk \
|
|
winsdk-tools
|
|
|
|
include $(wildcard vendor/*/build/ninja_config.mk)
|
|
|
|
# Any Android goals that need to be built.
|
|
ANDROID_GOALS := $(filter-out $(KATI_OUTPUT_PATTERNS),\
|
|
$(sort $(ORIGINAL_MAKECMDGOALS) $(MAKECMDGOALS)))
|
|
# Goals we need to pass to Ninja.
|
|
NINJA_GOALS := $(filter-out $(NINJA_EXCLUDE_GOALS), $(ANDROID_GOALS))
|
|
ifndef NINJA_GOALS
|
|
NINJA_GOALS := droid
|
|
endif
|
|
# Goals we need to pass to Kati.
|
|
KATI_GOALS := $(filter $(PARSE_TIME_MAKE_GOALS), $(ANDROID_GOALS))
|