Skip to content

Commit

Permalink
Add BUILD.bazel for the imported logcat_receiver
Browse files Browse the repository at this point in the history
Test: bazel build
//cuttlefish/host_tools/host/commands/logcat_receiver:logcat_receiver
  • Loading branch information
cjreynol committed Jan 23, 2025
1 parent 06424df commit 7bcd9d9
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions base/cvd/cuttlefish/host/commands/logcat_receiver/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
cc_binary(
name = "logcat_receiver",
deps = [
"//cuttlefish/common/libs/fs",
"//cuttlefish/host/libs/config",
"//libbase",
"@gflags",
],
srcs = [
"main.cpp",
],
cxxopts = [
"-std=c++17",
],
visibility = [
"//visibility:public"
],
)

0 comments on commit 7bcd9d9

Please sign in to comment.