BUILD 670 B

12345678910111213141516171819202122
  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", "string_list_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. string_list_setting(
  16. name = "original_platforms",
  17. build_setting_default = [],
  18. )