| Index: build/android/video_recorder.py
|
| diff --git a/build/android/video_recorder.py b/build/android/video_recorder.py
|
| new file mode 100755
|
| index 0000000000000000000000000000000000000000..666ede6da9ab71806b1ebfb2731cb213c20286fb
|
| --- /dev/null
|
| +++ b/build/android/video_recorder.py
|
| @@ -0,0 +1,11 @@
|
| +#!/usr/bin/env python
|
| +# Copyright 2015 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.
|
| +
|
| +import sys
|
| +
|
| +from devil.android.tools import video_recorder
|
| +
|
| +if __name__ == '__main__':
|
| + sys.exit(video_recorder.main())
|
|
|