Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(203)

Unified Diff: webrtc/modules/audio_coding/BUILD.gn

Issue 2747863003: Loosening the coupling between WebRTC and //third_party/protobuf (Closed)
Patch Set: Adding other deps to protobuf_utils Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_coding/BUILD.gn
diff --git a/webrtc/modules/audio_coding/BUILD.gn b/webrtc/modules/audio_coding/BUILD.gn
index 3a2d20a800e8326fe4b6077992474c7213ffd31d..6702b11ba6bb93d576a47d6b6e89ffe8b485b6c3 100644
--- a/webrtc/modules/audio_coding/BUILD.gn
+++ b/webrtc/modules/audio_coding/BUILD.gn
@@ -82,6 +82,11 @@ rtc_static_library("rent_a_codec") {
":isac_fix_c",
":neteq_decoder_enum",
] + audio_codec_deps
+
+ if (rtc_enable_protobuf) {
+ deps += [ "../../base:protobuf_utils" ]
+ }
kwiberg-webrtc 2017/03/22 10:03:23 Why would you ever want a conditional dep on proto
mbonadei 2017/03/23 16:13:58 Done and thanks for spotting this inconsistency. M
+
defines = audio_codec_defines
}
@@ -837,6 +842,10 @@ rtc_static_library("webrtc_opus") {
":webrtc_opus_c",
]
+ if (rtc_enable_protobuf) {
+ deps += [ "../../base:protobuf_utils" ]
+ }
+
defines = audio_codec_defines
if (rtc_opus_variable_complexity) {
defines += [ "WEBRTC_OPUS_VARIABLE_COMPLEXITY=1" ]
@@ -928,6 +937,7 @@ rtc_static_library("audio_network_adaptor") {
deps += [
":ana_config_proto",
":ana_debug_dump_proto",
+ "../../base:protobuf_utils",
]
defines = [ "WEBRTC_AUDIO_NETWORK_ADAPTOR_DEBUG_DUMP" ]
}
@@ -1190,6 +1200,11 @@ if (rtc_include_tests) {
"../../system_wrappers:system_wrappers",
"../../test:test_support",
]
+
+ if (rtc_enable_protobuf) {
+ deps += [ "../../base:protobuf_utils" ]
+ }
+
if (!build_with_chromium && is_clang) {
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
@@ -1329,6 +1344,10 @@ if (rtc_include_tests) {
"//testing/gtest",
]
+ if (rtc_enable_protobuf) {
+ deps += [ "../../base:protobuf_utils" ]
+ }
+
data = audio_decoder_unittests_resources
if (is_android) {
@@ -2102,6 +2121,7 @@ if (rtc_include_tests) {
deps += [
":ana_config_proto",
":neteq_unittest_proto",
+ "../../base:protobuf_utils",
]
}

Powered by Google App Engine
This is Rietveld 408576698