зеркало из https://github.com/mozilla/gecko-dev.git
58 строки
1.1 KiB
Python
58 строки
1.1 KiB
Python
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# vim: set filetype=python:
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
UNIFIED_SOURCES += [
|
|
'AutoMemMap.cpp',
|
|
'ChromeScriptLoader.cpp',
|
|
'mozJSLoaderUtils.cpp',
|
|
'mozJSSubScriptLoader.cpp',
|
|
'ScriptCacheActors.cpp',
|
|
'ScriptPreloader.cpp',
|
|
'URLPreloader.cpp',
|
|
]
|
|
|
|
# mozJSComponentLoader.cpp cannot be built in unified mode because it uses
|
|
# windows.h
|
|
SOURCES += [
|
|
'mozJSComponentLoader.cpp'
|
|
]
|
|
|
|
IPDL_SOURCES += [
|
|
'PScriptCache.ipdl',
|
|
]
|
|
|
|
EXPORTS.mozilla += [
|
|
'AutoMemMap.h',
|
|
'ScriptPreloader.h',
|
|
'URLPreloader.h',
|
|
]
|
|
|
|
EXPORTS.mozilla.dom += [
|
|
'PrecompiledScript.h',
|
|
]
|
|
|
|
EXPORTS.mozilla.loader += [
|
|
'AutoMemMap.h',
|
|
'ScriptCacheActors.h',
|
|
]
|
|
|
|
EXTRA_JS_MODULES += [
|
|
'XPCOMUtils.jsm',
|
|
]
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
LOCAL_INCLUDES += [
|
|
'../src',
|
|
'../wrappers',
|
|
'/dom/base',
|
|
]
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
if CONFIG['CC_TYPE'] in ('clang', 'gcc'):
|
|
CXXFLAGS += ['-Wno-shadow']
|