blob: b355d53aa00560fc6943c72df75eaf45f479f165 [file] [log] [blame]
Brian Silvermanf2639282018-08-04 16:46:11 -07001licenses(["notice"]) # boost
2
3cc_library(
4 name = "optional",
5 hdrs = glob(["include/**"]),
6 includes = ["include"],
7 visibility = ["//visibility:public"],
8 deps = [
9 "//third_party/boostorg/assert",
10 "//third_party/boostorg/core",
11 "//third_party/boostorg/static_assert",
12 "//third_party/boostorg/throw_exception",
13 "//third_party/boostorg/type_traits",
14 ],
15)