2016-11-19 03:37:13 +03:00
|
|
|
# -*- 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("**"):
|
2018-11-04 15:57:04 +03:00
|
|
|
BUG_COMPONENT = ("Core", "Web Painting")
|
2016-11-19 03:37:13 +03:00
|
|
|
|
|
|
|
EXPORTS += [
|
|
|
|
"ActiveLayerTracker.h",
|
|
|
|
"DisplayItemClip.h",
|
2017-01-27 14:57:44 +03:00
|
|
|
"DisplayItemClipChain.h",
|
2016-11-19 03:37:13 +03:00
|
|
|
"DisplayListClipState.h",
|
2021-02-07 01:30:37 +03:00
|
|
|
"HitTestInfo.h",
|
2016-11-19 03:37:13 +03:00
|
|
|
"LayerState.h",
|
2018-07-16 22:22:43 +03:00
|
|
|
"MatrixStack.h",
|
2021-10-20 16:56:32 +03:00
|
|
|
"nsCSSRendering.h",
|
2017-02-23 12:34:14 +03:00
|
|
|
"nsCSSRenderingBorders.h",
|
2017-03-14 09:05:41 +03:00
|
|
|
"nsCSSRenderingGradients.h",
|
2016-11-19 03:37:13 +03:00
|
|
|
"nsDisplayItemTypes.h",
|
|
|
|
"nsDisplayItemTypesList.h",
|
|
|
|
"nsDisplayList.h",
|
2019-07-02 05:46:09 +03:00
|
|
|
"nsDisplayListArenaTypes.h",
|
2016-11-19 03:37:13 +03:00
|
|
|
"nsDisplayListInvalidation.h",
|
2017-03-13 06:46:04 +03:00
|
|
|
"nsImageRenderer.h",
|
2017-10-18 06:09:07 +03:00
|
|
|
"RetainedDisplayListBuilder.h",
|
2018-03-23 06:47:37 +03:00
|
|
|
"RetainedDisplayListHelpers.h",
|
2018-07-25 22:58:22 +03:00
|
|
|
"TransformClipNode.h",
|
2021-07-23 01:58:57 +03:00
|
|
|
"WindowRenderer.h",
|
2016-11-19 03:37:13 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS.mozilla += [
|
|
|
|
"PaintTracker.h",
|
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
"ActiveLayerTracker.cpp",
|
|
|
|
"DashedCornerFinder.cpp",
|
|
|
|
"DisplayItemClip.cpp",
|
2017-01-27 14:57:44 +03:00
|
|
|
"DisplayItemClipChain.cpp",
|
2016-11-19 03:37:13 +03:00
|
|
|
"DisplayListClipState.cpp",
|
|
|
|
"DottedCornerFinder.cpp",
|
2021-02-07 01:30:37 +03:00
|
|
|
"HitTestInfo.cpp",
|
2016-11-19 03:37:13 +03:00
|
|
|
"MaskLayerImageCache.cpp",
|
|
|
|
"nsCSSRendering.cpp",
|
|
|
|
"nsCSSRenderingBorders.cpp",
|
2017-03-14 09:05:41 +03:00
|
|
|
"nsCSSRenderingGradients.cpp",
|
2016-11-19 03:37:13 +03:00
|
|
|
"nsDisplayList.cpp",
|
|
|
|
"nsDisplayListInvalidation.cpp",
|
2017-03-13 06:46:04 +03:00
|
|
|
"nsImageRenderer.cpp",
|
2016-11-19 03:37:13 +03:00
|
|
|
"PaintTracker.cpp",
|
2017-10-18 06:09:07 +03:00
|
|
|
"RetainedDisplayListBuilder.cpp",
|
2021-07-23 01:58:57 +03:00
|
|
|
"WindowRenderer.cpp",
|
2016-11-19 03:37:13 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
include("/ipc/chromium/chromium-config.mozbuild")
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
"/docshell/base",
|
|
|
|
"/dom/base",
|
2019-08-07 20:41:13 +03:00
|
|
|
"/gfx/2d",
|
2021-07-30 02:38:31 +03:00
|
|
|
"/gfx/cairo/cairo/src",
|
2016-11-19 03:37:13 +03:00
|
|
|
"/layout/base",
|
|
|
|
"/layout/generic",
|
|
|
|
"/layout/style",
|
|
|
|
"/layout/tables",
|
|
|
|
"/layout/xul",
|
|
|
|
]
|
|
|
|
|
2019-08-07 20:41:13 +03:00
|
|
|
LOCAL_INCLUDES += CONFIG["SKIA_INCLUDES"]
|
|
|
|
|
2016-11-19 03:37:13 +03:00
|
|
|
FINAL_LIBRARY = "xul"
|