mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-12 13:31:30 +00:00
44 lines
1.0 KiB
Python
44 lines
1.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/.
|
|
|
|
Library('imagetest')
|
|
|
|
UNIFIED_SOURCES = [
|
|
'Common.cpp',
|
|
'TestCopyOnWrite.cpp',
|
|
'TestDecoders.cpp',
|
|
'TestDecodeToSurface.cpp',
|
|
'TestMetadata.cpp',
|
|
'TestStreamingLexer.cpp',
|
|
]
|
|
|
|
TEST_HARNESS_FILES.gtest += [
|
|
'corrupt-with-bad-bmp-height.ico',
|
|
'corrupt-with-bad-bmp-width.ico',
|
|
'corrupt.jpg',
|
|
'first-frame-green.gif',
|
|
'first-frame-green.png',
|
|
'first-frame-padding.gif',
|
|
'green.bmp',
|
|
'green.gif',
|
|
'green.ico',
|
|
'green.icon',
|
|
'green.jpg',
|
|
'green.png',
|
|
'no-frame-delay.gif',
|
|
'rle4.bmp',
|
|
'rle8.bmp',
|
|
'transparent-if-within-ico.bmp',
|
|
'transparent.gif',
|
|
'transparent.png',
|
|
]
|
|
|
|
LOCAL_INCLUDES += [
|
|
'/image',
|
|
]
|
|
|
|
FINAL_LIBRARY = 'xul-gtest'
|