https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 5fcb0911d2a04efa14701cc30649d2a70b7a2679 authored by ffxbld on 11 September 2014, 03:17:12 UTC
Added FIREFOX_32_0_1_RELEASE FIREFOX_32_0_1_BUILD1 tag(s) for changeset 07671dc64b94. DONTBUILD CLOSED TREE a=release
Tip revision: 5fcb091
Makefile.in
# 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/.

include $(topsrcdir)/config/config.mk

ifeq (gonk,$(MOZ_WIDGET_TOOLKIT))
MOZ_B2G=1
else
MOZ_B2G=0
endif

libs::
	$(PYTHON) $(srcdir)/copy_source.py $(topsrcdir) $(srcdir)/source/lib $(FINAL_TARGET)/modules/commonjs $(MOZ_B2G) >copy_source.mk
	$(MAKE) -f copy_source.mk libs

include $(topsrcdir)/config/rules.mk

TEST_FILES = \
  source/app-extension \
  source/bin \
  source/python-lib \
  source/test \
  source/package.json \
  source/mapping.json \
  $(NULL)

# Remove this once the test harness uses the APIs built into Firefox
TEST_FILES += source/lib

PKG_STAGE = $(DIST)/test-stage

stage-tests-package:: $(TEST_FILES)
	$(INSTALL) $^ $(PKG_STAGE)/jetpack
back to top