Bug 616542 - Shorten file path length of mochitest; r=ted
[gecko.git] / mobile / chrome / tests / Makefile.in
blob3f1ce48db6b06ade9fddc3648a50bc7964b82ea2
1 # ***** BEGIN LICENSE BLOCK *****
2 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 # The contents of this file are subject to the Mozilla Public License Version
5 # 1.1 (the "License"); you may not use this file except in compliance with
6 # the License. You may obtain a copy of the License at
7 # http://www.mozilla.org/MPL/
9 # Software distributed under the License is distributed on an "AS IS" basis,
10 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 # for the specific language governing rights and limitations under the
12 # License.
14 # The Original Code is Mozilla.
16 # The Initial Developer of the Original Code is
17 # the Mozilla Foundation <http://www.mozilla.org/>.
18 # Portions created by the Initial Developer are Copyright (C) 2008
19 # the Initial Developer. All Rights Reserved.
21 # Contributor(s):
22 # Mark Finkle <mfinkle@mozilla.com>
24 # Alternatively, the contents of this file may be used under the terms of
25 # either the GNU General Public License Version 2 or later (the "GPL"), or
26 # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 # in which case the provisions of the GPL or the LGPL are applicable instead
28 # of those above. If you wish to allow use of your version of this file only
29 # under the terms of either the GPL or the LGPL, and not to allow others to
30 # use your version of this file under the terms of the MPL, indicate your
31 # decision by deleting the provisions above and replace them with the notice
32 # and other provisions required by the GPL or the LGPL. If you do not delete
33 # the provisions above, a recipient may use your version of this file under
34 # the terms of any one of the MPL, the GPL or the LGPL.
36 # ***** END LICENSE BLOCK *****
38 DEPTH = ../../..
39 topsrcdir = @top_srcdir@
40 srcdir = @srcdir@
41 VPATH = @srcdir@
42 relativesrcdir = mobile/chrome/tests
43 TESTXPI = $(CURDIR)/$(DEPTH)/$(mochitestdir)/browser/$(relativesrcdir)/addons
44 ADDONSRC = $(srcdir)/addons
46 include $(DEPTH)/config/autoconf.mk
47 include $(topsrcdir)/config/rules.mk
49 _BROWSER_FILES = \
50 head.js \
51 remote_autocomplete.js \
52 remote_contentpopup.js \
53 remote_head.js \
54 remote_focus.js \
55 remote_forms.js \
56 remote_formsZoom.js \
57 remote_vkb.js \
58 browser_addons.js \
59 browser_addons_locales.js \
60 browser_appmenu.js \
61 browser_autocompletesearch.js\
62 browser_awesomescreen.js \
63 browser_blank_01.html \
64 browser_blank_02.html \
65 browser_blank_03.html \
66 browser_bookmarks.js \
67 browser_contacts.js \
68 browser_dragger.js \
69 browser_escape.js \
70 browser_find.js \
71 browser_focus.html \
72 browser_focus.js \
73 browser_forms.html \
74 $(warning browser_forms.js disabled due to failures) \
75 browser_formsZoom.html \
76 $(warning browser_formsZoom.js disabled due to failures) \
77 browser_history.js \
78 $(info browser_localepicker.js is disabled because the localepicker is disabled (bug 694047)) \
79 browser_localepicker_escape.js \
80 browser_mainui.js \
81 browser_preferences_text.js \
82 browser_preferences_fulltoggle.js \
83 browser_rect.js \
84 $(info browser_rememberPassword.js is disabled because it is random orange on XUL fennec (bug 698387)) \
85 browser_scroll.js \
86 browser_scroll.html \
87 browser_scrollbar.js \
88 browser_select.html \
89 browser_select.js \
90 browser_sessionstore.js \
91 browser_tabs.js \
92 $(info browser_tapping.js is disabled because it is random orange on XUL fennec (bug 698387)) \
93 $(info browser_tap_content.html is disabled because it is random orange on XUL fennec (bug 698387)) \
94 browser_tapping_edit.js \
95 browser_tap_contentedit.html \
96 browser_test.js \
97 browser_vkb.js \
98 $(warning browser_viewport.js disabled due to failures) \
99 browser_viewport.sjs \
100 browser_scrollbar.sjs \
101 browser_title.sjs \
102 browser_thumbnails.js \
103 browser_install.xml \
104 browser_upgrade.rdf\
105 browser_localerepository.js \
106 browser_localerepository_pref.js \
107 browser_localerepository_buildid.js \
108 locales_list.sjs \
109 mock_autocomplete.json\
110 $(NULL)
112 ifneq ($(OS_TARGET),Android)
113 _BROWSER_FILES += \
114 browser_autocomplete.html \
115 browser_autocomplete.js \
116 browser_bookmarks_star.js \
117 browser_bookmarks_tags.js \
118 browser_click_content.html \
119 browser_click_content.js \
120 browser_contentpopup.html \
121 browser_contentpopup.js \
122 browser_navigation.js \
123 $(NULL)
124 ifndef MOZ_PLATFORM_MAEMO
125 _BROWSER_FILES += browser_sidebars.js
126 endif
127 endif
129 libs:: $(_BROWSER_FILES)
130 $(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/$(mochitestdir)/browser/$(relativesrcdir)
132 libs::
133 rm -rf $(TESTXPI)
134 $(NSINSTALL) -D $(TESTXPI)
135 if [ -d $(ADDONSRC) ]; then \
136 $(EXIT_ON_ERROR) \
137 for dir in $(ADDONSRC)/*; do \
138 base=`basename $$dir` ; \
139 (cd $$dir && zip $(TESTXPI)/$$base.xpi *) \
140 done \