Skip to content

Commit

Permalink
Move webrtcclient imported files to libhoclient.
Browse files Browse the repository at this point in the history
- Add relevant bazel rules.
  • Loading branch information
ser-io committed Oct 28, 2024
1 parent c525b08 commit 6c01d79
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions frontend/src/libhoclient/webrtcclient/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")

go_library(
name = "webrtcclient",
srcs = [
"client.go",
"types.go",
],
importpath = "github.com/google/android-cuttlefish/frontend/src/libhoclient/webrtcclient",
visibility = ["//visibility:public"],
deps = [
"@com_github_pion_logging//:logging",
"@com_github_pion_webrtc_v3//:webrtc",
],
)

go_test(
name = "webrtcclient_test",
srcs = ["client_test.go"],
embed = [":webrtcclient"],
deps = ["@com_github_pion_webrtc_v3//:webrtc"],
)
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 6c01d79

Please sign in to comment.