From 25586cefddcc4b38a5260ef1c6b8cc72b9c1893e Mon Sep 17 00:00:00 2001 From: ehmaldonado Date: Thu, 7 Sep 2017 23:18:35 -0700 Subject: [PATCH] Make it possible to isolate isac_fix_test. Successful swarming run: https://chromium-swarm.appspot.com/task?id=38769e8dd5d3e110&refresh=10&show_raw=1 BUG=chromium:755660 NOTRY=True Review-Url: https://codereview.webrtc.org/3009203002 Cr-Commit-Position: refs/heads/master@{#19738} --- tools_webrtc/mb/gn_isolate_map.pyl | 8 ++++++++ webrtc/modules/audio_coding/BUILD.gn | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/tools_webrtc/mb/gn_isolate_map.pyl b/tools_webrtc/mb/gn_isolate_map.pyl index 3fa6c465e3..e9eb538b3e 100644 --- a/tools_webrtc/mb/gn_isolate_map.pyl +++ b/tools_webrtc/mb/gn_isolate_map.pyl @@ -43,6 +43,14 @@ "label": "//webrtc/common_video:common_video_unittests", "type": "console_test_launcher", }, + "isac_fix_test": { + "label": "//webrtc/modules/audio_coding:isac_fix_test", + "type": "console_test_launcher", + "args": [ + "32000", "../../resources/speech_and_misc_wb.pcm", + "isac_speech_and_misc_wb.pcm", + ] + }, "libjingle_peerconnection_android_unittest": { "label": "//webrtc/sdk/android:libjingle_peerconnection_android_unittest", "type": "additional_compile_target", diff --git a/webrtc/modules/audio_coding/BUILD.gn b/webrtc/modules/audio_coding/BUILD.gn index 4003db1b35..32d5336ce9 100644 --- a/webrtc/modules/audio_coding/BUILD.gn +++ b/webrtc/modules/audio_coding/BUILD.gn @@ -1925,6 +1925,10 @@ if (rtc_include_tests) { "../../test:test_support", ] + data = [ + "../../../resources/speech_and_misc_wb.pcm", + ] + if (is_win) { cflags = [ # Disable warnings to enable Win64 build, issue 1323.