Skip to content

Commit 7bcd9d9

Browse files
committed
Add BUILD.bazel for the imported logcat_receiver
Test: bazel build //cuttlefish/host_tools/host/commands/logcat_receiver:logcat_receiver
1 parent 06424df commit 7bcd9d9

File tree

1 file changed

+18
-0
lines changed
  • base/cvd/cuttlefish/host/commands/logcat_receiver

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
cc_binary(
2+
name = "logcat_receiver",
3+
deps = [
4+
"//cuttlefish/common/libs/fs",
5+
"//cuttlefish/host/libs/config",
6+
"//libbase",
7+
"@gflags",
8+
],
9+
srcs = [
10+
"main.cpp",
11+
],
12+
cxxopts = [
13+
"-std=c++17",
14+
],
15+
visibility = [
16+
"//visibility:public"
17+
],
18+
)

0 commit comments

Comments
 (0)