Chromium Code Reviews| Index: copy_apprtc.py |
| =================================================================== |
| --- copy_apprtc.py (revision 0) |
| +++ copy_apprtc.py (revision 0) |
| @@ -0,0 +1,14 @@ |
| +#!/usr/bin/python |
| +# Copyright 2013 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +"""Moves Apprtc to the out/ directory, where the browser test can find it.""" |
|
kjellander_chromium
2013/10/21 11:46:59
Maybe add a line here about why this is needed, si
|
| + |
| +import shutil |
| + |
| + |
| +if __name__ == '__main__': |
| + shutil.rmtree('src/out/apprtc', ignore_errors=True); |
| + shutil.copytree('src/third_party/webrtc_apprtc/apprtc', |
| + 'src/out/apprtc', ignore=shutil.ignore_patterns('.svn')) |
| Property changes on: copy_apprtc.py |
| ___________________________________________________________________ |
| Added: svn:executable |
| + * |
| Added: svn:eol-style |
| + LF |