Bug 754472 - Implement multiple plugin click-to-play UI. r=jaws r=margaret r=dietrich
[gecko.git] / toolkit / themes / Makefile.in
blob46bf3958665a7526455e7cadcc52efc099955caf
1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 DEPTH = @DEPTH@
6 topsrcdir = @top_srcdir@
7 srcdir = @srcdir@
8 VPATH = @srcdir@
10 include $(DEPTH)/config/autoconf.mk
12 # Theme Selection
14 # MacOS X Pinstripe (toolkit/themes/pinstripe)
15 # Windows Winstripe (toolkit/themes/winstripe)
16 # GNOME/Linux Winstripe (toolkit/themes/winstripe) +
17 # GNOMEStripe overrides (toolkit/themes/gnomestripe)
18 # OS/2 Winstripe (toolkit/themes/winstripe) +
19 # PMStripe overrides (toolkit/themes/pmstripe)
20 # faststripe Winstripe + faststripe (no native theme components)
22 ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
23 DIRS = pinstripe
24 else
26 DIRS = winstripe
28 ifneq (,$(filter gtk2 qt,$(MOZ_WIDGET_TOOLKIT)))
29 DIRS += gnomestripe
30 endif
31 ifneq (,$(filter os2,$(MOZ_WIDGET_TOOLKIT)))
32 DIRS += pmstripe/global
33 endif
34 ifdef MOZ_THEME_FASTSTRIPE
35 DIRS += faststripe/global
36 endif
38 endif
40 include $(topsrcdir)/config/rules.mk