Files
2023-03-02 10:50:04 -08:00

48 lines
787 B
Python

load("//tools:defs.bzl", "bzl_library", "gotsan_flag_values", "gotsan_values")
package(
default_applicable_licenses = ["//:license"],
licenses = ["notice"],
)
config_setting(
name = "debug",
values = {"compilation_mode": "dbg"},
visibility = [
"//:sandbox",
],
)
config_setting(
name = "gotsan",
flag_values = gotsan_flag_values,
values = gotsan_values,
visibility = [
"//:sandbox",
],
)
bzl_library(
name = "arch_bzl",
srcs = ["arch.bzl"],
visibility = [
"//:sandbox",
],
)
bzl_library(
name = "defs_bzl",
srcs = ["defs.bzl"],
visibility = [
"//:sandbox",
],
)
bzl_library(
name = "deps_bzl",
srcs = ["deps.bzl"],
visibility = [
"//:sandbox",
],
)