/
githubmirror
/
carbon-lang
Обзор
Документация
Войти
/
githubmirror
/
carbon-lang
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
scripts/BUILD
27 строк
954 B
Jon Ross-Perkins
Switch libpfm and boost.unordered to BCR versions (#6847)
07 мар 2026, 00:57
Не верифицирован
07 мар 2026, 00:57
53c257d
Код
Авторство
О чём код?
# Part of the Carbon Language project, under the Apache License v2.0 with LLVM # Exceptions. See /LICENSE for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception load("@rules_python//python:defs.bzl", "py_test") load("//bazel/cc_rules:defs.bzl", "cc_library") py_test( name = "no_op_test", size = "small", srcs = ["no_op_test.py"], main = "no_op_test.py", ) cc_library( name = "deps_for_clangd_tidy", srcs = ["deps_for_clangd_tidy.cpp"], deps = [ # `@boost.unordered` uses `strip_prefix`, which results in # `_virtual_includes` being part of the `compile_commands.json`. To # support tools like `clangd-tidy`, this is intended to generate that directory. # # `@boost.unordered` uses `strip_prefix`, which results in # bazel-out/<mode>/bin/external/+_repo_rules+boost.unordered/_virtual_includes/boost.unordered "@boost.unordered", ], )