| Index: runtime/tools/gen_library_src_paths.py
|
| diff --git a/runtime/tools/gen_library_src_paths.py b/runtime/tools/gen_library_src_paths.py
|
| index 749c9d1d9b97eb1da2e862c8bf9b4d5c0e76ede4..8a55118f0a9bfdce58e3bb367fdbb46c7a5f9f4f 100644
|
| --- a/runtime/tools/gen_library_src_paths.py
|
| +++ b/runtime/tools/gen_library_src_paths.py
|
| @@ -8,12 +8,18 @@
|
|
|
| import os
|
| import sys
|
| +import utils
|
|
|
| from os.path import join
|
| from optparse import OptionParser
|
|
|
| +HOST_OS = utils.GuessOS()
|
| +
|
|
|
| def makeString(input_file):
|
| + # TODO(iposva): For now avoid creating overly long strings on Windows.
|
| + if HOST_OS == 'win32':
|
| + return 'NULL'
|
| result = '"'
|
| fileHandle = open(input_file, 'rb')
|
| lineCounter = 0
|
|
|