moz.build (798B)
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- 2 # vim: set filetype=python: 3 # This Source Code Form is subject to the terms of the Mozilla Public 4 # License, v. 2.0. If a copy of the MPL was not distributed with this 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 7 # The lgpllibs library stores symbols from third-party LGPL licensed libraries, 8 # such as libav and libsoundtouch. It fulfills the requirement of dynamically 9 # linking these symbols into gecko. 10 # 11 # Any library added here should also be reflected in the about:license page. 12 13 GeckoSharedLibrary("lgpllibs") 14 SHARED_LIBRARY_NAME = "lgpllibs" 15 16 # For some reason, mingw builds export way too many symbols. 17 if CONFIG["TARGET_OS"] == "WINNT" and CONFIG["CC_TYPE"] != "clang-cl": 18 SYMBOLS_FILE = "lgpllibs.symbols"