2023-03-02 23:42:35 +02:00
|
|
|
# Copyright 2023 Uber Technologies, Inc.
|
2023-04-20 03:23:25 +03:00
|
|
|
# Licensed under the MIT License
|
2023-03-02 23:42:35 +02:00
|
|
|
|
2023-04-21 17:00:03 +03:00
|
|
|
load("@hermetic_cc_toolchain//toolchain/libc:defs.bzl", "declare_libcs")
|
2022-04-13 17:52:25 +03:00
|
|
|
|
|
|
|
package(
|
|
|
|
default_visibility = ["//visibility:public"],
|
|
|
|
)
|
|
|
|
|
|
|
|
constraint_setting(
|
|
|
|
name = "variant",
|
|
|
|
default_constraint_value = "unconstrained",
|
|
|
|
)
|
|
|
|
|
|
|
|
constraint_value(
|
|
|
|
name = "unconstrained",
|
|
|
|
constraint_setting = "variant",
|
|
|
|
)
|
|
|
|
|
|
|
|
declare_libcs()
|