19 lines
300 B
Python
19 lines
300 B
Python
# 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"],
|
|
)
|