1
0
mirror of https://github.com/facebookincubator/mvfst.git synced 2025-04-18 17:24:03 +03:00
mvfst/quic/BUCK
Facebook Community Bot c526f93d0e
Re-sync with internal repository (#372)
The internal and external repositories are out of sync. This Pull Request attempts to brings them back in sync by patching the GitHub repository. Please carefully review this patch. You must disable ShipIt for your project in order to merge this pull request. DO NOT IMPORT this pull request. Instead, merge it directly on GitHub using the MERGE BUTTON. Re-enable ShipIt after merging.
2025-02-13 10:04:13 -08:00

44 lines
801 B
Python

load("@fbcode//quic:defs.bzl", "mvfst_cpp_library")
oncall("traffic_protocols")
mvfst_cpp_library(
name = "constants",
srcs = [
"QuicConstants.cpp",
],
headers = [
"QuicConstants.h",
],
deps = [
"//folly/lang:assume",
],
exported_deps = [
"//folly/chrono:clock",
"//folly/io:iobuf",
"//quic/common/third-party:better_enums",
],
)
mvfst_cpp_library(
name = "exception",
srcs = [
"QuicException.cpp",
],
headers = [
"QuicException.h",
],
deps = [
"//fizz/record:record",
],
exported_deps = [
":constants",
"//folly:range",
"//quic/common:optional",
"//quic/common:variant",
],
external_deps = [
"glog",
],
)