2013-03-11 22:47:40 +04:00
|
|
|
# -*- 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/.
|
|
|
|
|
2013-11-28 23:10:33 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-10-24 03:05:43 +04:00
|
|
|
'gfxSurfaceRefCountTest.cpp',
|
2013-12-05 20:36:04 +04:00
|
|
|
# Disabled on suspicion of causing bug 904227
|
|
|
|
#'gfxWordCacheTest.cpp',
|
2015-09-28 14:49:33 +03:00
|
|
|
'TestArena.cpp',
|
2013-10-24 02:59:50 +04:00
|
|
|
'TestBufferRotation.cpp',
|
|
|
|
'TestColorNames.cpp',
|
2015-01-15 01:24:09 +03:00
|
|
|
'TestCompositor.cpp',
|
2014-03-04 21:26:33 +04:00
|
|
|
'TestGfxPrefs.cpp',
|
2015-05-15 17:42:10 +03:00
|
|
|
'TestGfxWidgets.cpp',
|
2015-09-28 14:49:43 +03:00
|
|
|
'TestJobScheduler.cpp',
|
2013-10-24 02:59:50 +04:00
|
|
|
'TestLayers.cpp',
|
2015-06-04 21:34:46 +03:00
|
|
|
'TestMoz2D.cpp',
|
2015-06-05 02:30:52 +03:00
|
|
|
'TestQcms.cpp',
|
2015-06-04 21:34:46 +03:00
|
|
|
'TestRect.cpp',
|
2013-10-24 02:59:50 +04:00
|
|
|
'TestRegion.cpp',
|
2014-01-10 13:42:04 +04:00
|
|
|
'TestSkipChars.cpp',
|
2013-04-26 03:02:13 +04:00
|
|
|
# Hangs on linux in ApplyGdkScreenFontOptions
|
|
|
|
#'gfxFontSelectionTest.cpp',
|
2013-10-24 03:05:43 +04:00
|
|
|
'TestTextures.cpp',
|
2013-04-26 03:02:13 +04:00
|
|
|
# Test works but it doesn't assert anything
|
|
|
|
#'gfxTextRunPerfTest.cpp',
|
2015-07-01 20:42:48 +03:00
|
|
|
# Bug 1179287 - PGO bustage on Linux
|
|
|
|
#'TestTiledLayerBuffer.cpp',
|
2015-01-23 22:19:54 +03:00
|
|
|
'TestVsync.cpp',
|
2013-06-22 18:33:31 +04:00
|
|
|
]
|
|
|
|
|
2015-06-04 21:34:46 +03:00
|
|
|
UNIFIED_SOURCES += [ '/gfx/2d/unittest/%s' % p for p in [
|
|
|
|
'TestBase.cpp',
|
|
|
|
'TestBugs.cpp',
|
|
|
|
'TestCairo.cpp',
|
|
|
|
'TestPoint.cpp',
|
|
|
|
'TestScaling.cpp',
|
|
|
|
]]
|
2013-08-22 10:56:00 +04:00
|
|
|
|
2013-10-02 21:17:55 +04:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
2013-11-28 18:10:38 +04:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/gfx/2d',
|
|
|
|
'/gfx/2d/unittest',
|
|
|
|
'/gfx/layers',
|
2015-06-05 02:30:52 +03:00
|
|
|
'/gfx/qcms',
|
2013-11-28 18:10:38 +04:00
|
|
|
]
|
|
|
|
|
2014-03-31 15:21:38 +04:00
|
|
|
FINAL_LIBRARY = 'xul-gtest'
|
2014-07-24 19:55:33 +04:00
|
|
|
|
|
|
|
CXXFLAGS += CONFIG['MOZ_CAIRO_CFLAGS']
|