summaryrefslogtreecommitdiffstats
path: root/image/test/gtest/moz.build
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-06-08 18:12:08 +0000
committerMoonchild <moonchild@palemoon.org>2020-06-08 18:12:08 +0000
commitb0901eb0990191e1f063bfa13cb11701571612fd (patch)
treea2bf352e4f2cb73fc2000636ea8c2aec0130e82a /image/test/gtest/moz.build
parente8bdf27ac712ffca8fd680100f3c7d4b33241e49 (diff)
downloadUXP-b0901eb0990191e1f063bfa13cb11701571612fd.tar
UXP-b0901eb0990191e1f063bfa13cb11701571612fd.tar.gz
UXP-b0901eb0990191e1f063bfa13cb11701571612fd.tar.lz
UXP-b0901eb0990191e1f063bfa13cb11701571612fd.tar.xz
UXP-b0901eb0990191e1f063bfa13cb11701571612fd.zip
Issue #439 - Remove, fix and clean up automated tests
With the big amount of code churn around DOM a lot of tests broke severely enough that they caused build bustage. This commit cleans up, removes or otherwise fixes tests that are broken, no longer relevant or obsolete.
Diffstat (limited to 'image/test/gtest/moz.build')
-rw-r--r--image/test/gtest/moz.build79
1 files changed, 0 insertions, 79 deletions
diff --git a/image/test/gtest/moz.build b/image/test/gtest/moz.build
deleted file mode 100644
index 3548eaecc..000000000
--- a/image/test/gtest/moz.build
+++ /dev/null
@@ -1,79 +0,0 @@
-# -*- 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/.
-
-Library('imagetest')
-
-UNIFIED_SOURCES = [
- 'Common.cpp',
- 'TestADAM7InterpolatingFilter.cpp',
- 'TestCopyOnWrite.cpp',
- 'TestDecoders.cpp',
- 'TestDecodeToSurface.cpp',
- 'TestDeinterlacingFilter.cpp',
- 'TestLoader.cpp',
- 'TestMetadata.cpp',
- 'TestRemoveFrameRectFilter.cpp',
- 'TestSourceBuffer.cpp',
- 'TestStreamingLexer.cpp',
- 'TestSurfaceSink.cpp',
-]
-
-if CONFIG['MOZ_ENABLE_SKIA']:
- UNIFIED_SOURCES += [
- 'TestDownscalingFilter.cpp',
- 'TestSurfacePipeIntegration.cpp',
- ]
-
-SOURCES += [
- # Can't be unified because it manipulates the preprocessor environment.
- 'TestDownscalingFilterNoSkia.cpp',
-]
-
-TEST_HARNESS_FILES.gtest += [
- 'animated-with-extra-image-sub-blocks.gif',
- 'corrupt-with-bad-bmp-height.ico',
- 'corrupt-with-bad-bmp-width.ico',
- 'corrupt.jpg',
- 'downscaled.bmp',
- 'downscaled.gif',
- 'downscaled.ico',
- 'downscaled.icon',
- 'downscaled.jpg',
- 'downscaled.png',
- 'first-frame-green.gif',
- 'first-frame-green.png',
- 'first-frame-padding.gif',
- 'green-1x1-truncated.gif',
- 'green.bmp',
- 'green.gif',
- 'green.ico',
- 'green.icon',
- 'green.jpg',
- 'green.png',
- 'invalid-truncated-metadata.bmp',
- 'no-frame-delay.gif',
- 'rle4.bmp',
- 'rle8.bmp',
- 'transparent-ico-with-and-mask.ico',
- 'transparent-if-within-ico.bmp',
- 'transparent.gif',
- 'transparent.png',
-]
-
-include('/ipc/chromium/chromium-config.mozbuild')
-
-LOCAL_INCLUDES += [
- '/dom/base',
- '/gfx/2d',
- '/image',
-]
-
-LOCAL_INCLUDES += CONFIG['SKIA_INCLUDES']
-
-FINAL_LIBRARY = 'xul-gtest'
-
-if CONFIG['GNU_CXX']:
- CXXFLAGS += ['-Wno-error=shadow']