diff --git a/test/fuzzers/BUILD.gn b/test/fuzzers/BUILD.gn index 79c4da8b09..df834bb3f0 100644 --- a/test/fuzzers/BUILD.gn +++ b/test/fuzzers/BUILD.gn @@ -23,9 +23,12 @@ rtc_static_library("webrtc_fuzzer_main") { ] # When WebRTC fuzzer tests are built on Chromium bots they need to link - # with Chromium's implementation of metrics. + # with Chromium's implementation of metrics and field trial. if (build_with_chromium) { - deps += [ "../../../webrtc_overrides:metrics" ] + deps += [ + "../../../webrtc_overrides:field_trial", + "../../../webrtc_overrides:metrics", + ] } }