blob: c9987b86cc5c9204742875a0b593e41d87dd3b0e [file] [log] [blame]
Adam Lesinski2427dce2017-11-30 15:10:28 -08001LOCAL_PATH := $(call my-dir)
2
Adam Lesinski04465e72017-11-02 15:23:36 -07003include $(CLEAR_VARS)
4
Adam Lesinski2427dce2017-11-30 15:10:28 -08005# Target for running host unit tests on post/pre-submit.
Adam Lesinski04465e72017-11-02 15:23:36 -07006.PHONY: aapt2_run_host_unit_tests
7aapt2_run_host_unit_tests: PRIVATE_GTEST_OPTIONS := --gtest_output=xml:$(DIST_DIR)/gtest/aapt2_host_unit_tests_result.xml
8aapt2_run_host_unit_tests: $(HOST_OUT_NATIVE_TESTS)/aapt2_tests/aapt2_tests
9 -$(HOST_OUT_NATIVE_TESTS)/aapt2_tests/aapt2_tests $(PRIVATE_GTEST_OPTIONS) > /dev/null 2>&1
10
Adam Lesinski2427dce2017-11-30 15:10:28 -080011include $(call all-makefiles-under,$(LOCAL_PATH))