aboutsummaryrefslogtreecommitdiff
path: root/cast/sender
diff options
context:
space:
mode:
Diffstat (limited to 'cast/sender')
-rw-r--r--cast/sender/DEPS7
-rw-r--r--cast/sender/public/DEPS12
-rw-r--r--cast/sender/public/README.md5
3 files changed, 24 insertions, 0 deletions
diff --git a/cast/sender/DEPS b/cast/sender/DEPS
new file mode 100644
index 00000000..e386f11a
--- /dev/null
+++ b/cast/sender/DEPS
@@ -0,0 +1,7 @@
+# -*- Mode: Python; -*-
+
+include_rules = [
+ # libcast sender code must not depend on the receiver.
+ '+cast/common/public',
+ '+cast/sender'
+]
diff --git a/cast/sender/public/DEPS b/cast/sender/public/DEPS
new file mode 100644
index 00000000..44de6584
--- /dev/null
+++ b/cast/sender/public/DEPS
@@ -0,0 +1,12 @@
+# -*- Mode: Python; -*-
+
+include_rules = [
+ # By default, openscreen implementation libraries should not be exposed
+ # through public APIs.
+ '-base',
+ '-platform',
+
+ # Dependencies on the implementation are not allowed in public/.
+ '-cast/sender',
+ '+cast/sender/public'
+]
diff --git a/cast/sender/public/README.md b/cast/sender/public/README.md
new file mode 100644
index 00000000..ace86163
--- /dev/null
+++ b/cast/sender/public/README.md
@@ -0,0 +1,5 @@
+# cast/receiver/public
+
+This module contains an implementation of the Cast "sender", i.e. the client
+that discovers Cast devices on the LAN and launches apps on them.
+