blob: 0acdc72b623b881eef7b82075dcbd96a5861f5ca [file] [log] [blame]
James Kuszmaulba0ac1a2022-08-12 16:29:30 -07001licenses(["notice"])
2
3exports_files(["COPYING"])
4
5load(":bazel/glog.bzl", "glog_library")
6
7glog_library()
8
9# platform() to build with clang-cl on Bazel CI. This is enabled with
10# the flags in .bazelci/presubmit.yml:
11#
12# --incompatible_enable_cc_toolchain_resolution
13# --extra_toolchains=@local_config_cc//:cc-toolchain-x64_windows-clang-cl
14# --extra_execution_platforms=//:x64_windows-clang-cl
15platform(
16 name = "x64_windows-clang-cl",
17 constraint_values = [
18 "@platforms//cpu:x86_64",
19 "@platforms//os:windows",
20 "@bazel_tools//tools/cpp:clang-cl",
21 ],
22)