aboutsummaryrefslogtreecommitdiff
path: root/osp
diff options
context:
space:
mode:
authorYuri Wiitala <miu@chromium.org>2019-12-05 16:51:42 -0800
committerCommit Bot <commit-bot@chromium.org>2019-12-06 22:49:38 +0000
commitca24ee5f1e56c7b5d5a333630794f6ee8afaaf38 (patch)
tree4cbdca97237e9543f057231fc662a742bd61dfe0 /osp
parenta62a64b7393d4a20afb7525f1735bf968a2f8c78 (diff)
downloadopenscreen-ca24ee5f1e56c7b5d5a333630794f6ee8afaaf38.tar.gz
Cleanup platform/BUILD.gn to mirror DEPS relationships.
Simplifies the BUILD.gn targets, to make dependency relationships very clear. Bug: openscreen:89 Change-Id: I8d0392ba04c3abe75464bfec3b789ce06fcb95d0 Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/1952154 Reviewed-by: Jordan Bayles <jophba@chromium.org> Reviewed-by: Yuri Wiitala <miu@chromium.org> Reviewed-by: mark a. foltz <mfoltz@chromium.org> Commit-Queue: Yuri Wiitala <miu@chromium.org>
Diffstat (limited to 'osp')
-rw-r--r--osp/impl/BUILD.gn2
-rw-r--r--osp/impl/discovery/mdns/BUILD.gn1
-rw-r--r--osp/impl/quic/BUILD.gn2
3 files changed, 5 insertions, 0 deletions
diff --git a/osp/impl/BUILD.gn b/osp/impl/BUILD.gn
index b446aef9..779300bb 100644
--- a/osp/impl/BUILD.gn
+++ b/osp/impl/BUILD.gn
@@ -43,6 +43,7 @@ source_set("impl") {
]
deps = [
"../../platform",
+ "../../third_party/abseil",
"../../util",
"quic",
]
@@ -64,6 +65,7 @@ if (use_chromium_quic) {
deps = [
"../../osp/msgs",
"../../platform",
+ "../../third_party/abseil",
"../../third_party/chromium_quic",
"../../util",
"quic",
diff --git a/osp/impl/discovery/mdns/BUILD.gn b/osp/impl/discovery/mdns/BUILD.gn
index 4779f526..cd051d17 100644
--- a/osp/impl/discovery/mdns/BUILD.gn
+++ b/osp/impl/discovery/mdns/BUILD.gn
@@ -15,6 +15,7 @@ source_set("mdns_interface") {
public_deps = [
"../../../../platform",
+ "../../../../third_party/abseil",
"../../../../util",
]
}
diff --git a/osp/impl/quic/BUILD.gn b/osp/impl/quic/BUILD.gn
index 9b0c8028..221af394 100644
--- a/osp/impl/quic/BUILD.gn
+++ b/osp/impl/quic/BUILD.gn
@@ -16,6 +16,7 @@ source_set("quic") {
deps = [
"../../../platform",
+ "../../../third_party/abseil",
"../../../util",
"../../public",
]
@@ -34,6 +35,7 @@ source_set("test_support") {
deps = [
"../../../platform",
+ "../../../third_party/abseil",
"../../../third_party/googletest:gmock",
"../../../util",
"../../msgs",