Austin Schuh | 3e95e5d | 2019-09-20 00:08:54 -0700 | [diff] [blame^] | 1 | licenses(["notice"]) |
| 2 | |
| 3 | cc_library( |
| 4 | name = "jsont", |
| 5 | srcs = [ |
| 6 | "jsont.c", |
| 7 | ], |
| 8 | hdrs = [ |
| 9 | "jsont.h", |
| 10 | ], |
| 11 | includes = ["."], |
| 12 | visibility = ["//visibility:public"], |
| 13 | ) |
| 14 | |
| 15 | cc_test( |
| 16 | name = "jsont_test", |
| 17 | srcs = ["test/test_tokenizer.c"], |
| 18 | copts = [ |
| 19 | "-Wno-unused-parameter", |
| 20 | "-Wno-unused-variable", |
| 21 | ] + select({ |
| 22 | "@//tools:cpu_roborio": [ |
| 23 | "-Wno-unused-but-set-variable", |
| 24 | ], |
| 25 | "//conditions:default": [], |
| 26 | }), |
| 27 | deps = [":jsont"], |
| 28 | ) |