Files

48 lines
787 B
Python
Raw Permalink Normal View History

2022-02-04 14:42:08 -08:00
load("//tools:defs.bzl", "bzl_library", "gotsan_flag_values", "gotsan_values")
package(
default_applicable_licenses = ["//:license"],
licenses = ["notice"],
)
2022-02-04 14:42:08 -08:00
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"],
2020-10-07 15:02:16 -07:00
visibility = [
"//:sandbox",
],
)
bzl_library(
name = "deps_bzl",
srcs = ["deps.bzl"],
visibility = [
"//:sandbox",
],
)