Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
1 #
2 # This Source Code Form is subject to the terms of the Mozilla Public
3 # License, v. 2.0. If a copy of the MPL was not distributed with this
4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 # ParseCSS.cpp used to be built as a test program, but it was not
7 # being used for anything, and recent changes to the CSS loader have
8 # made it fail to link. Further changes are planned which should make
9 # it buildable again.
10 #
11 # TestCSSPropertyLookup.cpp needs the internal XPCOM APIs and so cannot
12 # be built with libxul enabled.
13 #
14 #CPP_UNIT_TESTS = TestCSSPropertyLookup.cpp
15 #LIBS += ../nsCSSKeywords.$(OBJ_SUFFIX) ../nsCSSProps.$(OBJ_SUFFIX) $(XPCOM_LIBS)
17 ifdef COMPILE_ENVIRONMENT
18 css_properties.js: host_ListCSSProperties$(HOST_BIN_SUFFIX) css_properties_like_longhand.js Makefile
19 $(RM) $@
20 ./host_ListCSSProperties$(HOST_BIN_SUFFIX) > $@
21 cat $(srcdir)/css_properties_like_longhand.js >> $@
23 GARBAGE += css_properties.js
24 TEST_FILES := css_properties.js
25 TEST_DEST = $(DEPTH)/_tests/testing/mochitest/tests/$(relativesrcdir)
26 INSTALL_TARGETS += TEST
27 endif