Skip to content

Commit

Permalink
feat: framecryptor.
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudwebrtc committed Jun 6, 2023
1 parent 6a70604 commit ba30ae7
Show file tree
Hide file tree
Showing 22 changed files with 1,591 additions and 0 deletions.
18 changes: 18 additions & 0 deletions api/crypto/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,24 @@ group("crypto") {
]
}

rtc_library("frame_crypto_transformer") {
visibility = [ "*" ]
sources = [
"frame_crypto_transformer.cc",
"frame_crypto_transformer.h",
]

deps = [
"//api:frame_transformer_interface",
]

if (rtc_build_ssl) {
deps += [ "//third_party/boringssl" ]
} else {
configs += [ ":external_ssl_library" ]
}
}

rtc_library("options") {
visibility = [ "*" ]
sources = [
Expand Down
Loading

0 comments on commit ba30ae7

Please sign in to comment.