Austin Schuh | f972444 | 2018-10-28 20:30:21 -0700 | [diff] [blame] | 1 | package(default_visibility = ["//visibility:public"]) |
Parker Schuh | 149161a | 2016-03-16 21:57:21 -0700 | [diff] [blame] | 2 | |
| 3 | cc_library( |
Austin Schuh | f972444 | 2018-10-28 20:30:21 -0700 | [diff] [blame] | 4 | name = "stack_arena", |
| 5 | srcs = ["stack_arena.cc"], |
| 6 | hdrs = ["stack_arena.h"], |
| 7 | deps = [ |
| 8 | "//aos/logging", |
| 9 | "@com_google_protobuf//:protobuf", |
| 10 | ], |
Parker Schuh | 149161a | 2016-03-16 21:57:21 -0700 | [diff] [blame] | 11 | ) |
| 12 | |
| 13 | cc_test( |
Austin Schuh | f972444 | 2018-10-28 20:30:21 -0700 | [diff] [blame] | 14 | name = "stack_arena_test", |
| 15 | srcs = ["stack_arena_test.cc"], |
| 16 | deps = [ |
| 17 | ":stack_arena", |
| 18 | "//aos/logging", |
| 19 | "//aos/testing:googletest", |
| 20 | "//aos/testing:test_logging", |
| 21 | ], |
Parker Schuh | 149161a | 2016-03-16 21:57:21 -0700 | [diff] [blame] | 22 | ) |