mirror of
https://github.com/google/pebble.git
synced 2025-03-21 03:11:21 +00:00
31 lines
997 B
Python
31 lines
997 B
Python
from waftools.pebble_test import clar
|
|
|
|
|
|
def build(bld):
|
|
clar(bld,
|
|
sources_ant_glob=(
|
|
"src/fw/applib/app_inbox.c "
|
|
"src/fw/applib/app_message/app_message_receiver.c "
|
|
"src/fw/services/normal/app_message/app_message_receiver.c "
|
|
"src/fw/services/normal/app_inbox_service.c "
|
|
),
|
|
test_sources_ant_glob="test_app_message_receiver.c",
|
|
override_includes=['applib_malloc'])
|
|
|
|
clar(bld,
|
|
sources_ant_glob=(
|
|
"src/fw/services/normal/app_message/app_message_sender.c "
|
|
"src/fw/services/common/comm_session/session_send_queue.c "
|
|
),
|
|
test_sources_ant_glob="test_app_message_sender.c",
|
|
override_includes=[])
|
|
|
|
clar(bld,
|
|
sources_ant_glob=(
|
|
"src/fw/services/normal/comm_session/app_session_capabilities.c "
|
|
),
|
|
test_sources_ant_glob="test_app_session_capabilities.c",
|
|
override_includes=[])
|
|
|
|
|
|
# vim:filetype=python
|