aboutsummaryrefslogtreecommitdiff
path: root/streaming/cast/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'streaming/cast/BUILD.gn')
-rw-r--r--streaming/cast/BUILD.gn17
1 files changed, 12 insertions, 5 deletions
diff --git a/streaming/cast/BUILD.gn b/streaming/cast/BUILD.gn
index 83f7d3c4..b80fa22a 100644
--- a/streaming/cast/BUILD.gn
+++ b/streaming/cast/BUILD.gn
@@ -24,14 +24,17 @@ source_set("cast") {
"ssrc.h",
]
+ # TODO(btolsch): Here and elsewhere, this begs the question of whether we
+ # should either change //base to //osp_base (like webrtc) or maybe introduce
+ # an osp_source_set template (also like webrtc).
+ if (build_with_chromium) {
+ configs -= [ "//build/config/compiler:default_include_dirs" ]
+ }
+ configs += [ "../..:root_config_overrides" ]
public_deps = [
"../../third_party/abseil",
+ "../../third_party/boringssl",
]
- if (build_with_chromium) {
- public_deps += [ "//third_party/boringssl" ]
- } else {
- public_deps += [ "../../third_party/boringssl" ]
- }
deps = [
"../../platform",
@@ -49,6 +52,10 @@ source_set("cast_unittests") {
"ssrc_unittest.cc",
]
+ if (build_with_chromium) {
+ configs -= [ "//build/config/compiler:default_include_dirs" ]
+ }
+ configs += [ "../..:root_config_overrides" ]
deps = [
":cast",
"../../third_party/googletest:gtest",