aboutsummaryrefslogtreecommitdiff
path: root/cast/standalone_receiver/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'cast/standalone_receiver/BUILD.gn')
-rw-r--r--cast/standalone_receiver/BUILD.gn15
1 files changed, 10 insertions, 5 deletions
diff --git a/cast/standalone_receiver/BUILD.gn b/cast/standalone_receiver/BUILD.gn
index 74d53f65..23d394ac 100644
--- a/cast/standalone_receiver/BUILD.gn
+++ b/cast/standalone_receiver/BUILD.gn
@@ -8,18 +8,27 @@ import("//build_overrides/build.gni")
# Define the executable target only when the build is configured to use the
# standalone platform implementation; since this is itself a standalone
# application.
+#
+# See [external_libraries.md](../../build/config/external_libraries.md) for more information.
if (!build_with_chromium) {
shared_sources = [
"cast_service.cc",
"cast_service.h",
"mirroring_application.cc",
"mirroring_application.h",
+ "simple_remoting_receiver.cc",
+ "simple_remoting_receiver.h",
"streaming_playback_controller.cc",
"streaming_playback_controller.h",
]
shared_deps = [
+ "../../discovery:dnssd",
+ "../../discovery:public",
+ "../../platform:standalone_impl",
"../common:public",
+ "../receiver:agent",
+ "../receiver:channel",
"../streaming:receiver",
]
@@ -63,11 +72,7 @@ if (!build_with_chromium) {
executable("cast_receiver") {
sources = [ "main.cc" ]
- deps = [
- "../receiver:agent",
- "../receiver:channel",
- ]
-
+ deps = shared_deps
configs += [ "../common:certificate_config" ]
if (have_external_libs) {