summaryrefslogtreecommitdiffstats
path: root/image/moz.build
blob: aab71c1362ab1fff6eca0570280285cfbdc9ae2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# -*- 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/.

DIRS += ["build", "decoders", "encoders"]
if CONFIG["ENABLE_TESTS"]:
    DIRS += ["test/gtest"]

if CONFIG["FUZZING_INTERFACES"]:
    DIRS += ["test/fuzzing"]

with Files("**"):
    BUG_COMPONENT = ("Core", "Graphics: ImageLib")

BROWSER_CHROME_MANIFESTS += [
    "test/browser/browser.ini",
    "test/browser/browser_sandbox_headless.ini",
]

MOCHITEST_MANIFESTS += ["test/mochitest/mochitest.ini"]

MOCHITEST_CHROME_MANIFESTS += ["test/mochitest/chrome.ini"]

XPCSHELL_TESTS_MANIFESTS += ["test/unit/xpcshell.ini"]

XPIDL_SOURCES += [
    "imgICache.idl",
    "imgIContainer.idl",
    "imgIContainerDebug.idl",
    "imgIEncoder.idl",
    "imgILoader.idl",
    "imgINotificationObserver.idl",
    "imgIRequest.idl",
    "imgIScriptedNotificationObserver.idl",
    "imgITools.idl",
    "nsIIconURI.idl",
]

XPIDL_MODULE = "imglib2"

EXPORTS += [
    "FrameTimeout.h",
    "ImageBlocker.h",
    "ImageCacheKey.h",
    "ImageLogging.h",
    "ImageMetadata.h",
    "ImageOps.h",
    "ImageRegion.h",
    "ImgDrawResult.h",
    "imgLoader.h",
    "imgRequest.h",
    "imgRequestProxy.h",
    "IProgressObserver.h",
    "Orientation.h",
    "SurfaceCacheUtils.h",
]

EXPORTS.mozilla.image += [
    "encoders/bmp/nsBMPEncoder.h",
    "encoders/ico/nsICOEncoder.h",
    "encoders/jpeg/nsJPEGEncoder.h",
    "encoders/png/nsPNGEncoder.h",
    "ICOFileHeaders.h",
    "ImageMemoryReporter.h",
    "Resolution.h",
    "WebRenderImageProvider.h",
]

UNIFIED_SOURCES += [
    "AnimationFrameBuffer.cpp",
    "AnimationSurfaceProvider.cpp",
    "BlobSurfaceProvider.cpp",
    "ClippedImage.cpp",
    "DecodedSurfaceProvider.cpp",
    "Decoder.cpp",
    "DecoderFactory.cpp",
    "DynamicImage.cpp",
    "FrameAnimator.cpp",
    "FrozenImage.cpp",
    "IDecodingTask.cpp",
    "Image.cpp",
    "ImageBlocker.cpp",
    "ImageCacheKey.cpp",
    "ImageFactory.cpp",
    "ImageMemoryReporter.cpp",
    "ImageOps.cpp",
    "ImageWrapper.cpp",
    "imgFrame.cpp",
    "imgLoader.cpp",
    "imgRequest.cpp",
    "imgRequestProxy.cpp",
    "imgTools.cpp",
    "MultipartImage.cpp",
    "OrientedImage.cpp",
    "ProgressTracker.cpp",
    "RasterImage.cpp",
    "ScriptedNotificationObserver.cpp",
    "ShutdownTracker.cpp",
    "SourceBuffer.cpp",
    "SurfaceCache.cpp",
    "SurfaceCacheUtils.cpp",
    "SurfacePipe.cpp",
    "SVGDocumentWrapper.cpp",
    "VectorImage.cpp",
]

UNIFIED_SOURCES += ["Downscaler.cpp"]

if CONFIG["MOZ_WIDGET_TOOLKIT"] == "windows":
    SOURCES += ["DecodePool.cpp"]
else:
    UNIFIED_SOURCES += ["DecodePool.cpp"]

include("/ipc/chromium/chromium-config.mozbuild")

FINAL_LIBRARY = "xul"

LOCAL_INCLUDES += [
    # Because SVGDocumentWrapper.cpp includes "mozilla/dom/SVGSVGElement.h"
    "/dom/base",
    "/dom/svg",
    # Because imgFrame.cpp includes "cairo.h"
    "/gfx/cairo/cairo/src",
    # We need to instantiate the decoders
    "/image/decoders",
    # For URI-related functionality
    "/netwerk/base",
    # For nsHttpChannel.h
    "/netwerk/protocol/http",
    # DecodePool uses thread-related facilities.
    "/xpcom/threads",
]

LOCAL_INCLUDES += CONFIG["SKIA_INCLUDES"]

# Add libFuzzer configuration directives
include("/tools/fuzzing/libfuzzer-config.mozbuild")