From b08a045e923583719330cf5bf9c6c6f639ff10c5 Mon Sep 17 00:00:00 2001 From: Takuto Ikuta Date: Tue, 17 Sep 2024 16:03:54 +0900 Subject: [PATCH] fix missing deps for proto compile actions We need to have imported proto as proto_data_sources in BUILD.gn to run the action remotely without workaround config in siso. Bug: b/366137880 Change-Id: I053774f00b761520a8a85154e386da3edb8f39b4 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/362680 Reviewed-by: Jeremy Leconte Reviewed-by: Jeremy Leconte Auto-Submit: Takuto Ikuta Commit-Queue: Takuto Ikuta Cr-Commit-Position: refs/heads/main@{#43040} --- modules/audio_coding/BUILD.gn | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/audio_coding/BUILD.gn b/modules/audio_coding/BUILD.gn index 8c42487958..24cc3f9808 100644 --- a/modules/audio_coding/BUILD.gn +++ b/modules/audio_coding/BUILD.gn @@ -550,6 +550,7 @@ if (rtc_enable_protobuf) { sources = [ "audio_network_adaptor/debug_dump.proto" ] link_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 += [ "*" ]