• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("@rules_cc//cc:defs.bzl", "cc_library")
2
3cc_library(
4    name = "user_config",
5    hdrs = [
6        "SkUserConfig.h",
7    ],
8    defines = [
9        "SK_USE_BAZEL_CONFIG_HEADER",
10    ],
11    visibility = ["//visibility:public"],
12)
13