/
githubmirror
/
carbon-lang
Обзор
Документация
Войти
/
githubmirror
/
carbon-lang
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
testing/fuzzing/BUILD
15 строк
516 B
Jon Ross-Perkins
Add cc rule wrappers for cc_env (#5277)
11 апр 2025, 22:58
Не верифицирован
11 апр 2025, 22:58
8c3fa80
Код
Авторство
О чём код?
# 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("//bazel/cc_rules:defs.bzl", "cc_library") package(default_visibility = ["//visibility:public"]) # Header for LibFuzzer, does not provide the implementation which should come # from some other source such as a fuzz test target. cc_library( name = "libfuzzer_header", testonly = 1, hdrs = ["libfuzzer.h"], )