mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backed out changeset 94c939eeb5f6 (bug 885019) for bustage.
This commit is contained in:
parent
cc626517e5
commit
b8d640eeab
@ -17,9 +17,6 @@ endif
|
||||
_MOZBUILD_EXTERNAL_VARIABLES := \
|
||||
DIRS \
|
||||
EXTRA_PP_COMPONENTS \
|
||||
GTEST_CMMSRCS \
|
||||
GTEST_CPPSRCS \
|
||||
GTEST_CSRCS \
|
||||
HOST_CSRCS \
|
||||
HOST_LIBRARY_NAME \
|
||||
MODULE \
|
||||
|
@ -23,6 +23,23 @@ LOCAL_INCLUDES = \
|
||||
-I$(topsrcdir)/gfx/2d/unittest \
|
||||
$(NULL)
|
||||
|
||||
GTEST_CPPSRCS = \
|
||||
TestLayers.cpp \
|
||||
TestTiledLayerBuffer.cpp \
|
||||
TestAsyncPanZoomController.cpp \
|
||||
$(NULL)
|
||||
|
||||
# Because of gkmedia on windows we wont find these
|
||||
# symbols in xul.dll.
|
||||
ifneq ($(MOZ_WIDGET_TOOLKIT),windows)
|
||||
GTEST_CPPSRCS += \
|
||||
TestMoz2D.cpp \
|
||||
TestBase.cpp \
|
||||
TestPoint.cpp \
|
||||
TestScaling.cpp \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
||||
|
||||
|
@ -8,18 +8,3 @@ MODULE = 'gfxtest'
|
||||
|
||||
LIBRARY_NAME = 'gfxtest'
|
||||
|
||||
GTEST_CPP_SOURCES += [
|
||||
'TestAsyncPanZoomController.cpp',
|
||||
'TestLayers.cpp',
|
||||
'TestTiledLayerBuffer.cpp',
|
||||
]
|
||||
|
||||
# Because of gkmedia on windows we wont find these
|
||||
# symbols in xul.dll.
|
||||
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'windows':
|
||||
GTEST_CPP_SOURCES += [
|
||||
'TestBase.cpp'
|
||||
'TestMoz2D.cpp'
|
||||
'TestPoint.cpp'
|
||||
'TestScaling.cpp'
|
||||
]
|
||||
|
@ -17,9 +17,6 @@ endif
|
||||
_MOZBUILD_EXTERNAL_VARIABLES := \
|
||||
DIRS \
|
||||
EXTRA_PP_COMPONENTS \
|
||||
GTEST_CMMSRCS \
|
||||
GTEST_CPPSRCS \
|
||||
GTEST_CSRCS \
|
||||
HOST_CSRCS \
|
||||
HOST_LIBRARY_NAME \
|
||||
MODULE \
|
||||
|
@ -87,9 +87,6 @@ class TreeMetadataEmitter(object):
|
||||
EXTRA_COMPONENTS='EXTRA_COMPONENTS',
|
||||
EXTRA_JS_MODULES='EXTRA_JS_MODULES',
|
||||
EXTRA_PP_COMPONENTS='EXTRA_PP_COMPONENTS',
|
||||
GTEST_CMMSRCS='GTEST_CMM_SOURCES',
|
||||
GTEST_CPPSRCS='GTEST_CPP_SOURCES',
|
||||
GTEST_CSRCS='GTEST_C_SOURCES',
|
||||
HOST_CSRCS='HOST_CSRCS',
|
||||
HOST_LIBRARY_NAME='HOST_LIBRARY_NAME',
|
||||
JS_MODULES_PATH='JS_MODULES_PATH',
|
||||
|
@ -118,27 +118,6 @@ VARIABLES = {
|
||||
files will be installed in the /components directory of the distribution.
|
||||
"""),
|
||||
|
||||
'GTEST_C_SOURCES': (StrictOrderingOnAppendList, list, [],
|
||||
"""C code source files for GTest unit tests.
|
||||
|
||||
This variable contains a list of C GTEST unit test source files to
|
||||
compile.
|
||||
"""),
|
||||
|
||||
'GTEST_CMM_SOURCES': (StrictOrderingOnAppendList, list, [],
|
||||
"""Sources for GTest unit tests to compile with the Objective C/C++ compiler.
|
||||
|
||||
This variable contains a list of objective-C++ GTest unit test sources
|
||||
to compile.
|
||||
"""),
|
||||
|
||||
'GTEST_CPP_SOURCES': (list, list, [],
|
||||
"""C++ source files for GTest unit tests.
|
||||
|
||||
This is a list of C++ GTest unit test sources. Entries must be files
|
||||
that exist. These generally have .cpp, .cc, or .cxx extensions.
|
||||
"""),
|
||||
|
||||
'HOST_CSRCS': (StrictOrderingOnAppendList, list, [],
|
||||
"""C source files to compile with the host compiler.
|
||||
|
||||
|
@ -13,10 +13,6 @@ DEFINES = ['-Dbar', '-Dfoo']
|
||||
EXTRA_COMPONENTS = ['bar.js', 'foo.js']
|
||||
EXTRA_PP_COMPONENTS = ['bar.pp.js', 'foo.pp.js']
|
||||
|
||||
GTEST_C_SOURCES = ['test1.c', 'test2.c']
|
||||
GTEST_CMM_SOURCES = ['test1.mm', 'test2.mm']
|
||||
GTEST_CPP_SOURCES = ['test1.cpp', 'test2.cpp']
|
||||
|
||||
HOST_CSRCS = ['bar.c', 'foo.c']
|
||||
|
||||
HOST_LIBRARY_NAME = 'host_bar'
|
||||
|
@ -162,18 +162,6 @@ class TestRecursiveMakeBackend(BackendTester):
|
||||
'EXTRA_PP_COMPONENTS += bar.pp.js',
|
||||
'EXTRA_PP_COMPONENTS += foo.pp.js',
|
||||
],
|
||||
'GTEST_CMMSRCS': [
|
||||
'GTEST_CMMSRCS += test1.mm',
|
||||
'GTEST_CMMSRCS += test2.mm',
|
||||
],
|
||||
'GTEST_CPPSRCS': [
|
||||
'GTEST_CPPSRCS += test1.cpp',
|
||||
'GTEST_CPPSRCS += test2.cpp',
|
||||
],
|
||||
'GTEST_CSRCS': [
|
||||
'GTEST_CSRCS += test1.c',
|
||||
'GTEST_CSRCS += test2.c',
|
||||
],
|
||||
'HOST_CSRCS': [
|
||||
'HOST_CSRCS += bar.c',
|
||||
'HOST_CSRCS += foo.c',
|
||||
|
@ -13,10 +13,6 @@ DEFINES=['-Dfans', '-Dtans']
|
||||
EXTRA_COMPONENTS=['fans.js', 'tans.js']
|
||||
EXTRA_PP_COMPONENTS=['fans.pp.js', 'tans.pp.js']
|
||||
|
||||
GTEST_C_SOURCES = ['test1.c', 'test2.c']
|
||||
GTEST_CMM_SOURCES = ['test1.mm', 'test2.mm']
|
||||
GTEST_CPP_SOURCES = ['test1.cpp', 'test2.cpp']
|
||||
|
||||
HOST_CSRCS += ['fans.c', 'tans.c']
|
||||
|
||||
HOST_LIBRARY_NAME = 'host_fans'
|
||||
|
@ -131,9 +131,6 @@ class TestEmitterBasic(unittest.TestCase):
|
||||
DEFINES=['-Dfans', '-Dtans'],
|
||||
EXTRA_COMPONENTS=['fans.js', 'tans.js'],
|
||||
EXTRA_PP_COMPONENTS=['fans.pp.js', 'tans.pp.js'],
|
||||
GTEST_CSRCS=['test1.c', 'test2.c'],
|
||||
GTEST_CMMSRCS=['test1.mm', 'test2.mm'],
|
||||
GTEST_CPPSRCS=['test1.cpp', 'test2.cpp'],
|
||||
HOST_CSRCS=['fans.c', 'tans.c'],
|
||||
HOST_LIBRARY_NAME='host_fans',
|
||||
LIBRARY_NAME='lib_name',
|
||||
|
@ -22,6 +22,10 @@ EXPORT_LIBRARY = 1
|
||||
LIBXUL_LIBRARY = 1
|
||||
IS_COMPONENT = 1
|
||||
|
||||
GTEST_CPPSRCS = \
|
||||
SanityTest.cpp \
|
||||
$(NULL)
|
||||
|
||||
LOCAL_INCLUDES += \
|
||||
-I$(srcdir)/gtest \
|
||||
-I$(srcdir)/gtest/include \
|
||||
|
@ -61,7 +61,3 @@ CPP_SOURCES += [
|
||||
|
||||
LIBRARY_NAME = 'gtest'
|
||||
|
||||
GTEST_CPP_SOURCES += [
|
||||
'SanityTest.cpp',
|
||||
]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user