OLD | NEW |
| (Empty) |
1 #!/usr/bin/env python | |
2 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | |
3 # | |
4 # Use of this source code is governed by a BSD-style license | |
5 # that can be found in the LICENSE file in the root of the source | |
6 # tree. An additional intellectual property rights grant can be found | |
7 # in the file PATENTS. All contributing project authors may | |
8 # be found in the AUTHORS file in the root of the source tree. | |
9 | |
10 import os | |
11 | |
12 # This is just a forwarding script during the transition of renaming tools to | |
13 # rtc_tools. To avoid breaking Chromium tests. | |
14 | |
15 SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__)) | |
16 RTC_TOOLS_DIR = os.path.abspath(os.path.join(SCRIPT_DIR, os.pardir, | |
17 'rtc_tools')) | |
18 os.system(os.path.join(RTC_TOOLS_DIR, 'compare_videos.py')) | |
OLD | NEW |