summaryrefslogtreecommitdiff
path: root/asl/synchronization/BUILD.bazel
blob: ccc38606bfc0de5fabf17e5d4546c08213f338d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2025 Steven Le Rouzic
#
# SPDX-License-Identifier: BSD-3-Clause

package(
    default_applicable_licenses = ["//:license"],
)

cc_library(
    name = "atomic",
    hdrs = [
        "atomic.hpp",
    ],
    deps = [
        "//asl/base",
    ],
    visibility = ["//visibility:public"],
)