Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(454)

Unified Diff: remoting/host/gen_remoting_lib_rc.py

Issue 1749053002: Move //remoting/remoting_host_win.gypi:* to GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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()

Powered by Google App Engine
This is Rietveld 408576698