mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
38 lines
1.1 KiB
Makefile
38 lines
1.1 KiB
Makefile
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
# You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
DEPTH = @DEPTH@
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
relativesrcdir = @relativesrcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
_BROWSER_FILES = \
|
|
browser_newtab_block.js \
|
|
browser_newtab_disable.js \
|
|
browser_newtab_drag_drop.js \
|
|
browser_newtab_drop_preview.js \
|
|
browser_newtab_focus.js \
|
|
browser_newtab_private_browsing.js \
|
|
browser_newtab_reset.js \
|
|
browser_newtab_tabsync.js \
|
|
browser_newtab_unpin.js \
|
|
browser_newtab_bug721442.js \
|
|
browser_newtab_bug722273.js \
|
|
browser_newtab_bug723102.js \
|
|
browser_newtab_bug723121.js \
|
|
browser_newtab_bug725996.js \
|
|
browser_newtab_bug734043.js \
|
|
browser_newtab_bug735987.js \
|
|
browser_newtab_bug752841.js \
|
|
browser_newtab_bug765628.js \
|
|
head.js \
|
|
$(NULL)
|
|
|
|
libs:: $(_BROWSER_FILES)
|
|
$(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/_tests/testing/mochitest/browser/$(relativesrcdir)
|