author | Ehsan Akhgari <ehsan@mozilla.com> |
Tue, 18 Feb 2014 08:58:18 -0500 | |
changeset 169340 | 88695c24eaf46dfce6a2c096b1ff0649cb11f302 |
parent 169339 | 158d923965d33df79a7257a1a669dd6c44b75c5f |
child 169341 | 183380b99514e28a2b173423286829ac1ded0432 |
push id | 26245 |
push user | ryanvm@gmail.com |
push date | Tue, 18 Feb 2014 20:18:17 +0000 |
treeherder | mozilla-central@9019cc90719c [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 970123 |
milestone | 30.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/toolkit/library/dependentlibs.py +++ b/toolkit/library/dependentlibs.py @@ -98,20 +98,20 @@ def dependentlibs(lib, libpaths, func): deps = [] for dep in func(lib): if dep in deps or os.path.isabs(dep): continue for dir in libpaths: deppath = os.path.join(dir, dep) if os.path.exists(deppath): deps.extend([d for d in dependentlibs(deppath, libpaths, func) if not d in deps]) - # Black list the ICU data DLL because preloading it at startup - # leads to startup performance problems because of its excessive - # size (around 10MB). - if not dep.startswith("icudt"): + # Black list the ICU data DLL because preloading it at startup + # leads to startup performance problems because of its excessive + # size (around 10MB). + if not dep.startswith("icudt"): deps.append(dep) break return deps def main(): parser = OptionParser() parser.add_option("-L", dest="libpaths", action="append", metavar="PATH", help="Add the given path to the library search path")