mirror of
https://github.com/google/pebble.git
synced 2025-03-19 18:41:21 +00:00
15 lines
518 B
Python
15 lines
518 B
Python
from waftools.pebble_test import clar
|
|
|
|
def build(ctx):
|
|
clar(ctx,
|
|
sources_ant_glob = \
|
|
" src/fw/applib/health_service.c" \
|
|
" src/fw/process_management/pebble_process_info.c" \
|
|
" src/fw/util/time/mktime.c" \
|
|
" src/fw/util/time/time.c" \
|
|
" src/fw/util/stats.c" \
|
|
" tests/fakes/fake_rtc.c",
|
|
test_sources_ant_glob = "test_health.c",
|
|
override_includes=['dummy_board'],
|
|
defines=["CAPABILITY_HAS_HEALTH_TRACKING=1"])
|
|
|