blob: b76cd99f493ffa5901c2f32a28bea3d1604fef22 [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 ],
John Park33858a32018-09-28 23:05:48 -070011 deps = [
12 "//aos:macros",
13 "//aos/mutex:mutex",
14 "//aos/logging",
John Park398c74a2018-10-20 21:17:39 -070015 "//aos/ipc_lib:shared_mem",
John Park33858a32018-09-28 23:05:48 -070016 ],
17)
18
19cc_test(
20 name = "time_test",
21 srcs = [
22 "time_test.cc",
23 ],
24 deps = [
25 ":time",
26 "//aos/logging",
27 "//aos/util:death_test_log_implementation",
28 "//aos/testing:googletest",
29 ],
30)