browser/themes/windows/Makefile.in

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/browser/themes/windows/Makefile.in	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,36 @@
     1.4 +# This Source Code Form is subject to the terms of the Mozilla Public
     1.5 +# License, v. 2.0. If a copy of the MPL was not distributed with this
     1.6 +# file, You can obtain one at http://mozilla.org/MPL/2.0/.
     1.7 +
     1.8 +ICON_FILES := icon.png
     1.9 +ICON_DEST = $(FINAL_TARGET)/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}
    1.10 +INSTALL_TARGETS += ICON
    1.11 +
    1.12 +# By default, the pre-processor used for jar.mn will use "%" as a marker for ".css" files and "#"
    1.13 +# otherwise. This falls apart when a file using one marker needs to include a file with the other
    1.14 +# marker since the pre-processor instructions in the included file will not be processed. The
    1.15 +# following SVG files need to include a file which uses "%" as the marker so we invoke the pre-
    1.16 +# processor ourselves here with the marker specified. The resulting SVG files will get packaged by
    1.17 +# the processing of the jar file in this directory.
    1.18 +tab-selected-svg: $(srcdir)/../shared/tab-selected.svg
    1.19 +	$(call py_action,preprocessor, \
    1.20 +	  --marker % -D TAB_SIDE=start \
    1.21 +	  $(ACDEFINES) \
    1.22 +	  $(srcdir)/../shared/tab-selected.svg -o tab-selected-start.svg)
    1.23 +	$(call py_action,preprocessor, \
    1.24 +	  --marker % -D TAB_SIDE=end \
    1.25 +	  $(ACDEFINES) \
    1.26 +	  $(srcdir)/../shared/tab-selected.svg -o tab-selected-end.svg)
    1.27 +# Same as above for aero.
    1.28 +	$(call py_action,preprocessor, \
    1.29 +	  --marker % -D TAB_SIDE=start -D WINDOWS_AERO \
    1.30 +	  $(ACDEFINES) \
    1.31 +	  $(srcdir)/../shared/tab-selected.svg -o tab-selected-start-aero.svg)
    1.32 +	$(call py_action,preprocessor, \
    1.33 +	  --marker % -D TAB_SIDE=end -D WINDOWS_AERO \
    1.34 +	  $(ACDEFINES) \
    1.35 +	  $(srcdir)/../shared/tab-selected.svg -o tab-selected-end-aero.svg)
    1.36 +
    1.37 +.PHONY: tab-selected-svg
    1.38 +
    1.39 +export:: tab-selected-svg

mercurial