From 337f6f2f932d444d33e9bc81e79896982592f3fb Mon Sep 17 00:00:00 2001 From: Takuto Ikuta Date: Fri, 18 Oct 2024 14:01:21 +0900 Subject: [PATCH] remove proto_data_sources usages Indirect input deps for imported proto is now handled by deps in proto_library template, so we don't need to use proto_data_sources anymore after https://crrev.com/c/5919027. To remove proto_data_sources from proto_library template, let me clean up proto_data_sources usages from this repository. Bug: chromium:366137880 Change-Id: I288a30004f7d622be502477a0567b00d19432e89 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/366060 Auto-Submit: Takuto Ikuta Reviewed-by: Henrik Andreassson Reviewed-by: Mirko Bonadei Commit-Queue: Henrik Andreassson Cr-Commit-Position: refs/heads/main@{#43261} --- modules/audio_coding/BUILD.gn | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/audio_coding/BUILD.gn b/modules/audio_coding/BUILD.gn index 29eb1197d7..c42da4142b 100644 --- a/modules/audio_coding/BUILD.gn +++ b/modules/audio_coding/BUILD.gn @@ -366,9 +366,8 @@ if (rtc_enable_protobuf) { proto_library("ana_debug_dump_proto") { visibility += webrtc_default_visibility sources = [ "audio_network_adaptor/debug_dump.proto" ] - link_deps = [ ":ana_config_proto" ] + deps = [ ":ana_config_proto" ] proto_out_dir = "modules/audio_coding/audio_network_adaptor" - proto_data_sources = [ "audio_network_adaptor/config.proto" ] } proto_library("ana_config_proto") { visibility += [ "*" ]