aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cast/standalone_sender/BUILD.gn1
-rw-r--r--discovery/BUILD.gn7
2 files changed, 6 insertions, 2 deletions
diff --git a/cast/standalone_sender/BUILD.gn b/cast/standalone_sender/BUILD.gn
index b00e769d..baf44383 100644
--- a/cast/standalone_sender/BUILD.gn
+++ b/cast/standalone_sender/BUILD.gn
@@ -22,6 +22,7 @@ if (!build_with_chromium) {
executable("cast_sender") {
deps = [
+ "../../discovery:dnssd",
"../../discovery:public",
"../../platform",
"../../platform:standalone_impl",
diff --git a/discovery/BUILD.gn b/discovery/BUILD.gn
index 0a747258..dbf0ace8 100644
--- a/discovery/BUILD.gn
+++ b/discovery/BUILD.gn
@@ -61,10 +61,10 @@ source_set("mdns") {
"mdns/mdns_writer.h",
]
+ public_deps = [ "../third_party/abseil" ]
deps = [
":public",
"../platform",
- "../third_party/abseil",
"../util",
]
}
@@ -171,7 +171,10 @@ source_set("unittests") {
openscreen_fuzzer_test("mdns_fuzzer") {
sources = [ "mdns/mdns_reader_fuzztest.cc" ]
- deps = [ ":mdns" ]
+ deps = [
+ ":mdns",
+ ":public",
+ ]
seed_corpus = "mdns/fuzzer_seeds"