Chromium Code Reviews| Index: remoting/host/gen_remoting_lib_rc.py |
| diff --git a/chrome/test/kasko/py/kasko/__init__.py b/remoting/host/gen_remoting_lib_rc.py |
| similarity index 61% |
| copy from chrome/test/kasko/py/kasko/__init__.py |
| copy to remoting/host/gen_remoting_lib_rc.py |
| index 82c0441ba24ba36092b528a352d3cb8298cb2518..c1e262ae32e4cc05bca2464fff1fc108306d38c5 100755 |
| --- a/chrome/test/kasko/py/kasko/__init__.py |
| +++ b/remoting/host/gen_remoting_lib_rc.py |
| @@ -1,12 +1,11 @@ |
| #!/usr/bin/env python |
| +# |
| # Copyright 2016 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 config |
| -import crash_server |
| -import exceptions |
| -import integration_test |
| -import process |
| -import report |
| -import util |
| +import sys |
| + |
| +f = open(sys.argv[1], 'w') |
| +f.write('1 typelib "remoting/host/chromoting_lib.tlb"') |
|
Sergey Ulanov
2016/03/01 20:26:43
Why do we need this script? it looks like it just
Hzj_jie
2016/03/02 08:27:29
Maybe not, I copied the logic from gyp target
http
Sergey Ulanov
2016/03/02 20:46:43
I see. This looks like an ugly hack. We want this
Hzj_jie
2016/03/03 09:06:35
Updated, please see my comments in remoting/host/B
|
| +f.close() |