blob: e5b1389a991373891b0fa33572391f9a9a2052c2 [file] [log] [blame]
John Park33858a32018-09-28 23:05:48 -07001package(default_visibility = ["//visibility:public"])
2
3cc_library(
4 name = "time",
5 srcs = [
6 "time.cc",
7 ],
8 hdrs = [
9 "time.h",
10 ],
11 compatible_with = [
12 "//tools:armhf-debian",
13 ],
14 deps = [
15 "//aos:macros",
16 "//aos/mutex:mutex",
17 "//aos/logging",
John Park398c74a2018-10-20 21:17:39 -070018 "//aos/ipc_lib:shared_mem",
John Park33858a32018-09-28 23:05:48 -070019 ],
20)
21
22cc_test(
23 name = "time_test",
24 srcs = [
25 "time_test.cc",
26 ],
27 deps = [
28 ":time",
29 "//aos/logging",
30 "//aos/util:death_test_log_implementation",
31 "//aos/testing:googletest",
32 ],
33)