BUILD 831 B

1234567891011121314151617181920212223242526272829
  1. # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. # Exceptions. See /LICENSE for license information.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. load("@bazel_skylib//rules:common_settings.bzl", "bool_setting", "int_setting")
  5. filegroup(
  6. name = "clang_tidy_config",
  7. srcs = [".clang-tidy"],
  8. visibility = ["//visibility:public"],
  9. )
  10. # `bazel run //:generate_compile_commands` to produce `compile_commands.json`.
  11. alias(
  12. name = "generate_compile_commands",
  13. actual = "@wolfd_bazel_compile_commands//:generate_compile_commands",
  14. )
  15. bool_setting(
  16. name = "runtimes_build",
  17. build_setting_default = False,
  18. visibility = ["//visibility:public"],
  19. )
  20. int_setting(
  21. name = "bootstrap_stage",
  22. build_setting_default = 0,
  23. visibility = ["//visibility:public"],
  24. )