mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
e396fc159d
Every directory with a jar.mn now has JAR_MANIFESTS defined in its moz.build file. We also removed the may_skip special consideration of jar.mn files because this information is now available during tier traversal by the reader courtesy of the variables being present in moz.build files. --HG-- extra : rebase_source : 21049b15e6bd9cf65b0805ccaccc4ba5aae93c98 extra : amend_source : 0b1ea866d725beef92d37c6f6d475369ac002e19
125 lines
3.0 KiB
Python
125 lines
3.0 KiB
Python
# -*- Mode: python; c-basic-offset: 4; 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/.
|
|
|
|
TEST_DIRS += ['test']
|
|
|
|
EXPORTS += [
|
|
'nsCanvasFrame.h',
|
|
'nsDirection.h',
|
|
'nsFrameIdList.h',
|
|
'nsFrameList.h',
|
|
'nsFrameSelection.h',
|
|
'nsHTMLParts.h',
|
|
'nsHTMLReflowMetrics.h',
|
|
'nsHTMLReflowState.h',
|
|
'nsIAnonymousContentCreator.h',
|
|
'nsIFrame.h',
|
|
'nsIFrameInlines.h',
|
|
'nsIFrameUtil.h',
|
|
'nsILineIterator.h',
|
|
'nsIObjectFrame.h',
|
|
'nsIPageSequenceFrame.h',
|
|
'nsIScrollableFrame.h',
|
|
'nsIScrollbarOwner.h',
|
|
'nsIScrollPositionListener.h',
|
|
'nsIStatefulFrame.h',
|
|
'nsObjectFrame.h',
|
|
'nsQueryFrame.h',
|
|
'nsSubDocumentFrame.h',
|
|
'ScrollbarActivity.h',
|
|
'Selection.h',
|
|
]
|
|
|
|
EXPORTS.mozilla += [
|
|
'Selection.h',
|
|
]
|
|
|
|
EXPORTS.mozilla.layout += [
|
|
'FrameChildList.h',
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
'FrameChildList.cpp',
|
|
'MathVariantTextRunFactory.cpp',
|
|
'nsAbsoluteContainingBlock.cpp',
|
|
'nsBlockFrame.cpp',
|
|
'nsBlockReflowContext.cpp',
|
|
'nsBlockReflowState.cpp',
|
|
'nsBRFrame.cpp',
|
|
'nsBulletFrame.cpp',
|
|
'nsCanvasFrame.cpp',
|
|
'nsColumnSetFrame.cpp',
|
|
'nsContainerFrame.cpp',
|
|
'nsFirstLetterFrame.cpp',
|
|
'nsFlexContainerFrame.cpp',
|
|
'nsFloatManager.cpp',
|
|
'nsFontInflationData.cpp',
|
|
'nsFrame.cpp',
|
|
'nsFrameList.cpp',
|
|
'nsFrameSetFrame.cpp',
|
|
'nsFrameUtil.cpp',
|
|
'nsGfxScrollFrame.cpp',
|
|
'nsHTMLCanvasFrame.cpp',
|
|
'nsHTMLReflowMetrics.cpp',
|
|
'nsHTMLReflowState.cpp',
|
|
'nsImageFrame.cpp',
|
|
'nsImageMap.cpp',
|
|
'nsInlineFrame.cpp',
|
|
'nsIntervalSet.cpp',
|
|
'nsLeafFrame.cpp',
|
|
'nsLineBox.cpp',
|
|
'nsPageContentFrame.cpp',
|
|
'nsPageFrame.cpp',
|
|
'nsPlaceholderFrame.cpp',
|
|
'nsSelection.cpp',
|
|
'nsSimplePageSequence.cpp',
|
|
'nsSplittableFrame.cpp',
|
|
'nsSubDocumentFrame.cpp',
|
|
'nsTextFrame.cpp',
|
|
'nsTextFrameUtils.cpp',
|
|
'nsTextRunTransformations.cpp',
|
|
'nsVideoFrame.cpp',
|
|
'nsViewportFrame.cpp',
|
|
'ScrollbarActivity.cpp',
|
|
'StickyScrollContainer.cpp',
|
|
'TextOverflow.cpp',
|
|
]
|
|
|
|
# nsLineLayout.cpp needs to be built separately because it uses plarena.h.
|
|
# nsObjectFrame.cpp needs to be built separately because of name clashes in the OS X headers.
|
|
SOURCES += [
|
|
'nsLineLayout.cpp',
|
|
'nsObjectFrame.cpp',
|
|
]
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
|
|
UNIFIED_SOURCES += [
|
|
'nsPluginUtilsOSX.mm',
|
|
]
|
|
|
|
FAIL_ON_WARNINGS = not CONFIG['_MSC_VER']
|
|
|
|
MSVC_ENABLE_PGO = True
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
FINAL_LIBRARY = 'gklayout'
|
|
|
|
LOCAL_INCLUDES += [
|
|
'../../content/base/src',
|
|
'../../content/html/content/src',
|
|
'../../content/xul/content/src',
|
|
'../../dom/base',
|
|
'../../dom/plugins/base',
|
|
'../base',
|
|
'../forms',
|
|
'../style',
|
|
'../svg',
|
|
'../tables',
|
|
'../xul',
|
|
]
|
|
|
|
JAR_MANIFESTS += ['jar.mn'] |