Files
carbon-lang/testing/fuzzing/BUILD
T
Jon Ross-Perkins a3b1c433be Remove legacy repo_name settings (#3772)
I'd kept these in to separate the bazel module update from the BUILD
file changes, then forgot about it. I think all of these can be cleanly
removed now. I think it's something we should clean up for consistency
with the bazel central repository names; I think it's best to reduce
that divergence.

llvm_zlib and llvm_zstd remain because of how llvm depends on the
particular names.
2024-03-13 22:58:56 +00:00

60 lines
1.4 KiB
Python

# 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_cc//cc:defs.bzl", "cc_binary", "cc_library", "cc_proto_library", "cc_test")
load("@rules_proto//proto:defs.bzl", "proto_library")
package(default_visibility = ["//visibility:public"])
proto_library(
name = "carbon_proto",
srcs = ["carbon.proto"],
)
cc_proto_library(
name = "carbon_cc_proto",
testonly = 1,
deps = [":carbon_proto"],
)
cc_library(
name = "proto_to_carbon_lib",
testonly = 1,
srcs = ["proto_to_carbon.cpp"],
hdrs = ["proto_to_carbon.h"],
deps = [
":carbon_cc_proto",
"//common:error",
"@llvm-project//llvm:Support",
"@protobuf//:protobuf_headers",
],
)
cc_binary(
name = "proto_to_carbon",
testonly = 1,
srcs = ["proto_to_carbon_main.cpp"],
deps = [
":carbon_cc_proto",
":proto_to_carbon_lib",
"//common:bazel_working_dir",
"//common:error",
"@llvm-project//llvm:Support",
"@protobuf//:protobuf_headers",
],
)
cc_test(
name = "proto_to_carbon_test",
size = "small",
srcs = ["proto_to_carbon_test.cpp"],
deps = [
":carbon_cc_proto",
":proto_to_carbon_lib",
"//common:error",
"//testing/base:gtest_main",
"@googletest//:gtest",
],
)