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"') |
+f.close() |