| 1234567891011121314151617 |
- # Copyright The OpenTelemetry Authors
- # SPDX-License-Identifier: Apache-2.0
- licenses(["notice"]) # 3-Clause BSD
- exports_files(["LICENSE.MIT"])
- cc_library(
- name = "json",
- hdrs = glob([
- "include/**/*.hpp",
- ]),
- includes = ["include"],
- visibility = ["//visibility:public"],
- alwayslink = 1,
- )
|