You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
619 B
18 lines
619 B
#
|
|
# Makefile for Pigweed's Unit Test Framework
|
|
#
|
|
PW_DIR = $(ANDROID_BUILD_TOP)/external/pigweed
|
|
PW_UT_DIR = $(PW_DIR)/pw_unit_test
|
|
|
|
PW_UT_SRCS += $(PW_UT_DIR)/framework.cc
|
|
|
|
PW_UT_CFLAGS += -I$(PW_UT_DIR)/public
|
|
PW_UT_CFLAGS += -I$(PW_UT_DIR)/public_overrides
|
|
PW_UT_CFLAGS += -I$(PW_DIR)/pw_polyfill/public
|
|
PW_UT_CFLAGS += -I$(PW_DIR)/pw_polyfill/public_overrides
|
|
PW_UT_CFLAGS += -I$(PW_DIR)/pw_polyfill/standard_library_public
|
|
PW_UT_CFLAGS += -I$(PW_DIR)/pw_preprocessor/public
|
|
PW_UT_CFLAGS += -I$(PW_DIR)/pw_span/public
|
|
PW_UT_CFLAGS += -I$(PW_DIR)/pw_span/public_overrides
|
|
PW_UT_CFLAGS += -I$(PW_DIR)/pw_string/public
|