gecko-dev/layout/tables/moz.build
Daniel Holbert 9ea51cda5a Bug 1754295 part 3: Fix non-unified build errors in layout/tables, and mark it as safe to build in non-unified mode. r=boris
This patch fixes the following build error:
layout/tables/FixedTableLayoutStrategy.cpp:86:31: error: incomplete type 'nsLayoutUtils' named in nested name specifier

I'm also removing the "DEBUG_TABLE_STRATEGY_off" definition from the contextual
section of moz.build, because that symbol is never used. (It's never mentioned
anywhere else in our codebase; it must have controlled some long-since-removed
code).

Differential Revision: https://phabricator.services.mozilla.com/D138217
2022-02-08 23:29:56 +00:00

52 lines
1.5 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/.
with Files("**"):
BUG_COMPONENT = ("Core", "Layout: Tables")
MOCHITEST_MANIFESTS += ["test/mochitest.ini"]
EXPORTS += [
"celldata.h", # included by nsCellMap.h
"nsCellMap.h", # included by nsTableWrapperFrame.h
"nsITableCellLayout.h",
"nsTableCellFrame.h", # included by dom/base/Selection.cpp
"nsTableFrame.h", # included by nsTableWrapperFrame.h
"nsTableRowFrame.h", # included by nsTableCellFrame.h
"nsTableRowGroupFrame.h", # included by nsTableRowFrame.h
"nsTableWrapperFrame.h", # included by dom/base/Selection.cpp
"TableArea.h", # included by nsCellMap.h
]
UNIFIED_SOURCES += [
"BasicTableLayoutStrategy.cpp",
"FixedTableLayoutStrategy.cpp",
"nsCellMap.cpp",
"nsTableCellFrame.cpp",
"nsTableColFrame.cpp",
"nsTableColGroupFrame.cpp",
"nsTableFrame.cpp",
"nsTableRowFrame.cpp",
"nsTableRowGroupFrame.cpp",
"nsTableWrapperFrame.cpp",
"SpanningCellSorter.cpp",
]
include("/ipc/chromium/chromium-config.mozbuild")
FINAL_LIBRARY = "xul"
LOCAL_INCLUDES += [
"../../intl/unicharutil/util",
"../base",
"../generic",
"../painting",
"../style",
"../xul",
"/dom/base",
"/dom/html",
]