2007-03-22 10:30:00 -07:00
|
|
|
#
|
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# License.
|
|
|
|
#
|
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Mozilla Foundation.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2007
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
|
|
|
|
DEPTH = ../../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
relativesrcdir = layout/style/test
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
2007-03-25 22:54:44 -07:00
|
|
|
|
|
|
|
MODULE = layout
|
|
|
|
|
2007-04-09 15:42:43 -07:00
|
|
|
# XXX Yuck. We can't transfer everything from autoconf to HOST_CFLAGS,
|
|
|
|
# but it would be nice to pick up anything affecting nsCSSPropList.h
|
|
|
|
# automatically.
|
|
|
|
ifdef MOZ_SVG
|
|
|
|
HOST_CFLAGS += -DMOZ_SVG=1
|
|
|
|
HOST_CXXFLAGS += -DMOZ_SVG=1
|
|
|
|
endif
|
|
|
|
|
2007-03-26 11:17:02 -07:00
|
|
|
HOST_CPPSRCS = \
|
2007-03-25 22:54:44 -07:00
|
|
|
ListCSSProperties.cpp \
|
|
|
|
$(NULL)
|
|
|
|
|
2007-03-26 11:17:02 -07:00
|
|
|
HOST_SIMPLE_PROGRAMS = $(addprefix host_, $(HOST_CPPSRCS:.cpp=$(HOST_BIN_SUFFIX)))
|
2007-03-25 22:54:44 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2007-03-26 11:17:02 -07:00
|
|
|
css_properties.js: host_ListCSSProperties$(HOST_BIN_SUFFIX) css_properties_like_longhand.js Makefile
|
2007-03-25 22:54:44 -07:00
|
|
|
$(RM) $@
|
2007-03-26 11:17:02 -07:00
|
|
|
./host_ListCSSProperties$(HOST_BIN_SUFFIX) > $@
|
2007-03-25 22:54:44 -07:00
|
|
|
cat $(srcdir)/css_properties_like_longhand.js >> $@
|
|
|
|
|
2007-07-04 11:51:16 -07:00
|
|
|
_TEST_FILES = test_bug74880.html \
|
|
|
|
test_bug221428.html \
|
2007-05-01 12:26:15 -07:00
|
|
|
test_bug302186.html \
|
2007-03-22 10:30:00 -07:00
|
|
|
test_bug319381.html \
|
2007-07-11 15:25:00 -07:00
|
|
|
test_bug357614.html \
|
2007-03-22 10:30:00 -07:00
|
|
|
test_bug365932.html \
|
|
|
|
test_bug372770.html \
|
|
|
|
test_bug373293.html \
|
2007-06-12 11:28:56 -07:00
|
|
|
test_bug377947.html \
|
2007-05-02 23:33:13 -07:00
|
|
|
test_bug379440.html \
|
2007-05-10 22:58:34 -07:00
|
|
|
test_bug379741.html \
|
2007-06-06 10:56:18 -07:00
|
|
|
test_bug383075.html \
|
2007-07-11 15:25:00 -07:00
|
|
|
test_bug387615.html \
|
2007-07-12 16:50:13 -07:00
|
|
|
test_compute_data_with_start_struct.html \
|
2007-05-16 18:51:30 -07:00
|
|
|
test_dont_use_document_colors.html \
|
2007-03-25 22:54:44 -07:00
|
|
|
test_inherit_storage.html \
|
2007-04-18 19:49:44 -07:00
|
|
|
test_inherit_computation.html \
|
2007-03-25 22:54:44 -07:00
|
|
|
test_initial_storage.html \
|
2007-04-18 19:49:44 -07:00
|
|
|
test_initial_computation.html \
|
2007-04-15 15:27:14 -07:00
|
|
|
test_property_database.html \
|
2007-04-15 15:29:35 -07:00
|
|
|
test_property_syntax_errors.html \
|
2007-04-20 17:17:29 -07:00
|
|
|
test_style_struct_copy_constructors.html \
|
2007-04-17 10:06:23 -07:00
|
|
|
test_value_storage.html \
|
2007-04-18 19:49:44 -07:00
|
|
|
test_value_computation.html \
|
2007-03-25 22:54:44 -07:00
|
|
|
css_properties.js \
|
2007-04-15 15:27:14 -07:00
|
|
|
property_database.js \
|
2007-04-18 19:49:44 -07:00
|
|
|
unstyled.xml \
|
|
|
|
unstyled.css \
|
2007-04-25 16:27:36 -07:00
|
|
|
unstyled-frame.xml \
|
|
|
|
unstyled-frame.css \
|
2007-03-22 10:30:00 -07:00
|
|
|
$(NULL)
|
|
|
|
|
2007-03-25 22:54:44 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
libs:: $(_TEST_FILES)
|
|
|
|
$(INSTALL) $^ $(DEPTH)/_tests/testing/mochitest/tests/$(relativesrcdir)
|