Chromium Code Reviews| Index: webrtc/examples/androidtests/video_quality_loopback_test.py |
| diff --git a/webrtc/examples/androidtests/video_quality_loopback_test.py b/webrtc/examples/androidtests/video_quality_loopback_test.py |
| index dd112750b6f8583cb38d5e9d1a4aee0eeccc48ec..1165e4bfea1187883d80f9a66922ad9f2d6c9a17 100755 |
| --- a/webrtc/examples/androidtests/video_quality_loopback_test.py |
| +++ b/webrtc/examples/androidtests/video_quality_loopback_test.py |
| @@ -73,12 +73,12 @@ def main(): |
| _RunCommand(['gn', 'gen', build_dir_x86]) |
| _RunCommand(['ninja', '-C', build_dir_x86, 'frame_analyzer']) |
| - toolchain_dir = os.path.join(SRC_DIR, 'tools-webrtc', |
| - 'video_quality_toolchain') |
| + tools_dir = os.path.join(SRC_DIR, 'tools-webrtc') |
| + toolchain_dir = os.path.join(tools_dir, 'video_quality_toolchain') |
| # Download ffmpeg and zxing. |
| - download_script = os.path.join(toolchain_dir, 'download.py') |
| - _RunCommand([sys.executable, download_script]) |
| + download_script = os.path.join(tools_dir, 'download.py') |
| + _RunCommand([sys.executable, download_script, toolchain_dir]) |
|
kjellander_webrtc
2017/02/27 07:05:13
Then you'll just skip this argument too.
|
| # Run the Espresso code. |
| test_script = os.path.join(build_dir_android, |