mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 784841 - Part 18d: Convert /browser; r=gavin f=Ms2ger
This commit is contained in:
parent
bab4f2e930
commit
8f9112102d
@ -9,29 +9,6 @@ VPATH = @srcdir@
|
|||||||
|
|
||||||
include $(topsrcdir)/config/config.mk
|
include $(topsrcdir)/config/config.mk
|
||||||
|
|
||||||
PARALLEL_DIRS = \
|
|
||||||
base \
|
|
||||||
components \
|
|
||||||
fuel \
|
|
||||||
locales \
|
|
||||||
modules \
|
|
||||||
themes \
|
|
||||||
extensions \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
DIRS = \
|
|
||||||
devtools \
|
|
||||||
app \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
ifdef MOZ_METRO
|
|
||||||
DIRS += metro
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifdef MAKENSISU
|
|
||||||
DIRS += installer/windows
|
|
||||||
endif
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|
||||||
ifdef MAKENSISU
|
ifdef MAKENSISU
|
||||||
|
21
browser/app.mozbuild
Normal file
21
browser/app.mozbuild
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
if not CONFIG['LIBXUL_SDK']:
|
||||||
|
app_libxul_dirs = []
|
||||||
|
include('/toolkit/toolkit.mozbuild')
|
||||||
|
|
||||||
|
if CONFIG['MOZ_EXTENSIONS']:
|
||||||
|
add_tier_dir('app', 'extensions')
|
||||||
|
|
||||||
|
add_tier_dir('app', [CONFIG['MOZ_BRANDING_DIRECTORY']])
|
||||||
|
|
||||||
|
if CONFIG['MOZ_WEBAPP_RUNTIME']:
|
||||||
|
add_tier_dir('app', 'webapprt')
|
||||||
|
|
||||||
|
# Never add tier dirs after browser because they apparently won't get
|
||||||
|
# packaged properly on Mac.
|
||||||
|
add_tier_dir('app', 'browser')
|
||||||
|
|
@ -9,7 +9,6 @@ VPATH = @srcdir@
|
|||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
DIRS = profile/extensions
|
|
||||||
dist_dest = $(DIST)/$(MOZ_MACBUNDLE_NAME)
|
dist_dest = $(DIST)/$(MOZ_MACBUNDLE_NAME)
|
||||||
|
|
||||||
ifdef ENABLE_MARIONETTE
|
ifdef ENABLE_MARIONETTE
|
||||||
|
6
browser/app/moz.build
Normal file
6
browser/app/moz.build
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
DIRS += ['profile/extensions']
|
@ -11,11 +11,6 @@ VPATH = @srcdir@
|
|||||||
DISTROEXT = $(call core_abspath,$(FINAL_TARGET))/distribution/extensions
|
DISTROEXT = $(call core_abspath,$(FINAL_TARGET))/distribution/extensions
|
||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
DIRS = \
|
|
||||||
{972ce4c6-7e08-4474-a285-3208198ce6fd} \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/config.mk
|
include $(topsrcdir)/config/config.mk
|
||||||
|
|
||||||
ifneq (,$(filter beta,$(MOZ_UPDATE_CHANNEL)))
|
ifneq (,$(filter beta,$(MOZ_UPDATE_CHANNEL)))
|
||||||
|
6
browser/app/profile/extensions/moz.build
Normal file
6
browser/app/profile/extensions/moz.build
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
DIRS += ['{972ce4c6-7e08-4474-a285-3208198ce6fd}']
|
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
@ -16,8 +16,6 @@ abs_srcdir = $(call core_abspath,$(srcdir))
|
|||||||
|
|
||||||
CHROME_DEPS += $(abs_srcdir)/content/overrides/app-license.html
|
CHROME_DEPS += $(abs_srcdir)/content/overrides/app-license.html
|
||||||
|
|
||||||
TEST_DIRS += content/test
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|
||||||
PRE_RELEASE_SUFFIX := ""
|
PRE_RELEASE_SUFFIX := ""
|
||||||
|
@ -8,11 +8,6 @@ srcdir = @srcdir@
|
|||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
relativesrcdir = @relativesrcdir@
|
relativesrcdir = @relativesrcdir@
|
||||||
|
|
||||||
DIRS += \
|
|
||||||
newtab \
|
|
||||||
social \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
MOCHITEST_FILES = \
|
MOCHITEST_FILES = \
|
||||||
|
7
browser/base/content/test/moz.build
Normal file
7
browser/base/content/test/moz.build
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
DIRS += ['newtab', 'social']
|
||||||
|
|
5
browser/base/content/test/newtab/moz.build
Normal file
5
browser/base/content/test/newtab/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
5
browser/base/content/test/social/moz.build
Normal file
5
browser/base/content/test/social/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
6
browser/base/moz.build
Normal file
6
browser/base/moz.build
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
TEST_DIRS += ['content/test']
|
@ -10,11 +10,6 @@ VPATH = @srcdir@
|
|||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
include $(topsrcdir)/config/config.mk
|
include $(topsrcdir)/config/config.mk
|
||||||
|
|
||||||
DIRS = \
|
|
||||||
content \
|
|
||||||
locales \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
PREF_JS_EXPORTS = $(srcdir)/pref/firefox-branding.js
|
PREF_JS_EXPORTS = $(srcdir)/pref/firefox-branding.js
|
||||||
|
|
||||||
# On Windows only do this step for browser, skip for metro.
|
# On Windows only do this step for browser, skip for metro.
|
||||||
|
5
browser/branding/aurora/content/moz.build
Normal file
5
browser/branding/aurora/content/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
5
browser/branding/aurora/locales/moz.build
Normal file
5
browser/branding/aurora/locales/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
7
browser/branding/aurora/moz.build
Normal file
7
browser/branding/aurora/moz.build
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
DIRS += ['content', 'locales']
|
||||||
|
|
@ -10,11 +10,6 @@ VPATH = @srcdir@
|
|||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
include $(topsrcdir)/config/config.mk
|
include $(topsrcdir)/config/config.mk
|
||||||
|
|
||||||
DIRS = \
|
|
||||||
content \
|
|
||||||
locales \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
PREF_JS_EXPORTS = $(srcdir)/pref/firefox-branding.js
|
PREF_JS_EXPORTS = $(srcdir)/pref/firefox-branding.js
|
||||||
|
|
||||||
# On Windows only do this step for browser, skip for metro.
|
# On Windows only do this step for browser, skip for metro.
|
||||||
|
5
browser/branding/nightly/content/moz.build
Normal file
5
browser/branding/nightly/content/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
5
browser/branding/nightly/locales/moz.build
Normal file
5
browser/branding/nightly/locales/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
6
browser/branding/nightly/moz.build
Normal file
6
browser/branding/nightly/moz.build
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
DIRS += ['content', 'locales']
|
@ -10,11 +10,6 @@ VPATH = @srcdir@
|
|||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
include $(topsrcdir)/config/config.mk
|
include $(topsrcdir)/config/config.mk
|
||||||
|
|
||||||
DIRS = \
|
|
||||||
content \
|
|
||||||
locales \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
PREF_JS_EXPORTS = $(srcdir)/pref/firefox-branding.js
|
PREF_JS_EXPORTS = $(srcdir)/pref/firefox-branding.js
|
||||||
|
|
||||||
# On Windows only do this step for browser, skip for metro.
|
# On Windows only do this step for browser, skip for metro.
|
||||||
|
5
browser/branding/official/content/moz.build
Normal file
5
browser/branding/official/content/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
5
browser/branding/official/locales/moz.build
Normal file
5
browser/branding/official/locales/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
7
browser/branding/official/moz.build
Normal file
7
browser/branding/official/moz.build
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
DIRS += ['content', 'locales']
|
||||||
|
|
@ -10,11 +10,6 @@ VPATH = @srcdir@
|
|||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
include $(topsrcdir)/config/config.mk
|
include $(topsrcdir)/config/config.mk
|
||||||
|
|
||||||
DIRS = \
|
|
||||||
content \
|
|
||||||
locales \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
PREF_JS_EXPORTS = $(srcdir)/pref/firefox-branding.js
|
PREF_JS_EXPORTS = $(srcdir)/pref/firefox-branding.js
|
||||||
|
|
||||||
# On Windows only do this step for browser, skip for metro.
|
# On Windows only do this step for browser, skip for metro.
|
||||||
|
5
browser/branding/unofficial/content/moz.build
Normal file
5
browser/branding/unofficial/content/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
5
browser/branding/unofficial/locales/moz.build
Normal file
5
browser/branding/unofficial/locales/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
7
browser/branding/unofficial/moz.build
Normal file
7
browser/branding/unofficial/moz.build
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
DIRS += ['content', 'locales']
|
||||||
|
|
@ -2,26 +2,6 @@
|
|||||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
# 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/.
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
ifndef LIBXUL_SDK
|
|
||||||
include $(topsrcdir)/toolkit/toolkit-tiers.mk
|
|
||||||
endif
|
|
||||||
|
|
||||||
TIERS += app
|
|
||||||
|
|
||||||
ifdef MOZ_EXTENSIONS
|
|
||||||
tier_app_dirs += extensions
|
|
||||||
endif
|
|
||||||
|
|
||||||
tier_app_dirs += $(MOZ_BRANDING_DIRECTORY)
|
|
||||||
|
|
||||||
ifdef MOZ_WEBAPP_RUNTIME
|
|
||||||
tier_app_dirs += webapprt
|
|
||||||
endif
|
|
||||||
|
|
||||||
tier_app_dirs += browser
|
|
||||||
# Never add other tier_app_dirs after browser. They won't get packaged
|
|
||||||
# properly on mac.
|
|
||||||
|
|
||||||
################################################
|
################################################
|
||||||
# Parallel build on Windows with GNU make check
|
# Parallel build on Windows with GNU make check
|
||||||
|
|
||||||
|
@ -28,31 +28,6 @@ EXTRA_PP_COMPONENTS = \
|
|||||||
|
|
||||||
EXTRA_JS_MODULES = distribution.js
|
EXTRA_JS_MODULES = distribution.js
|
||||||
|
|
||||||
PARALLEL_DIRS = \
|
|
||||||
about \
|
|
||||||
certerror \
|
|
||||||
dirprovider \
|
|
||||||
downloads \
|
|
||||||
feeds \
|
|
||||||
places \
|
|
||||||
preferences \
|
|
||||||
privatebrowsing \
|
|
||||||
search \
|
|
||||||
sessionstore \
|
|
||||||
shell \
|
|
||||||
sidebar \
|
|
||||||
tabview \
|
|
||||||
migration \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
ifdef MOZ_SAFE_BROWSING
|
|
||||||
PARALLEL_DIRS += safebrowsing
|
|
||||||
endif
|
|
||||||
|
|
||||||
TEST_DIRS += test
|
|
||||||
|
|
||||||
DIRS += build
|
|
||||||
|
|
||||||
ifdef MOZILLA_OFFICIAL
|
ifdef MOZILLA_OFFICIAL
|
||||||
DEFINES += -DOFFICIAL_BUILD=1
|
DEFINES += -DOFFICIAL_BUILD=1
|
||||||
endif
|
endif
|
||||||
|
5
browser/components/about/moz.build
Normal file
5
browser/components/about/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
5
browser/components/build/moz.build
Normal file
5
browser/components/build/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
@ -11,6 +11,4 @@ VPATH = @srcdir@
|
|||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
TEST_DIRS += test
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
6
browser/components/certerror/moz.build
Normal file
6
browser/components/certerror/moz.build
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
TEST_DIRS += ['test']
|
5
browser/components/certerror/test/moz.build
Normal file
5
browser/components/certerror/test/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
@ -12,8 +12,6 @@ include $(DEPTH)/config/autoconf.mk
|
|||||||
MODULE = browserdir
|
MODULE = browserdir
|
||||||
LIBRARY_NAME = browserdir_s
|
LIBRARY_NAME = browserdir_s
|
||||||
|
|
||||||
TEST_DIRS += tests
|
|
||||||
|
|
||||||
FORCE_STATIC_LIB = 1
|
FORCE_STATIC_LIB = 1
|
||||||
USE_STATIC_LIBS = 1
|
USE_STATIC_LIBS = 1
|
||||||
|
|
||||||
|
6
browser/components/dirprovider/moz.build
Normal file
6
browser/components/dirprovider/moz.build
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
TEST_DIRS += ['tests']
|
5
browser/components/dirprovider/tests/moz.build
Normal file
5
browser/components/dirprovider/tests/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
@ -9,8 +9,4 @@ VPATH = @srcdir@
|
|||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
DIRS = src
|
|
||||||
|
|
||||||
TEST_DIRS += test
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
7
browser/components/downloads/moz.build
Normal file
7
browser/components/downloads/moz.build
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
DIRS += ['src']
|
||||||
|
TEST_DIRS += ['test']
|
5
browser/components/downloads/src/moz.build
Normal file
5
browser/components/downloads/src/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
@ -12,6 +12,4 @@ include $(DEPTH)/config/autoconf.mk
|
|||||||
|
|
||||||
XPCSHELL_TESTS = unit
|
XPCSHELL_TESTS = unit
|
||||||
|
|
||||||
DIRS = browser
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
5
browser/components/downloads/test/browser/moz.build
Normal file
5
browser/components/downloads/test/browser/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
6
browser/components/downloads/test/moz.build
Normal file
6
browser/components/downloads/test/moz.build
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
DIRS += ['browser']
|
@ -9,8 +9,4 @@ VPATH = @srcdir@
|
|||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
DIRS = public src
|
|
||||||
|
|
||||||
TEST_DIRS += test
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
7
browser/components/feeds/moz.build
Normal file
7
browser/components/feeds/moz.build
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
DIRS += ['public', 'src']
|
||||||
|
TEST_DIRS += ['test']
|
5
browser/components/feeds/public/moz.build
Normal file
5
browser/components/feeds/public/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
5
browser/components/feeds/src/moz.build
Normal file
5
browser/components/feeds/src/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
@ -13,10 +13,6 @@ include $(DEPTH)/config/autoconf.mk
|
|||||||
MODULE = test_browser_feeds
|
MODULE = test_browser_feeds
|
||||||
XPCSHELL_TESTS = unit
|
XPCSHELL_TESTS = unit
|
||||||
|
|
||||||
DIRS = \
|
|
||||||
chrome \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
MOCHITEST_FILES = bug408328-data.xml \
|
MOCHITEST_FILES = bug408328-data.xml \
|
||||||
bug368464-data.xml \
|
bug368464-data.xml \
|
||||||
test_bug494328.html \
|
test_bug494328.html \
|
||||||
|
5
browser/components/feeds/test/chrome/moz.build
Normal file
5
browser/components/feeds/test/chrome/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
6
browser/components/feeds/test/moz.build
Normal file
6
browser/components/feeds/test/moz.build
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
DIRS += ['chrome']
|
@ -9,8 +9,4 @@ VPATH = @srcdir@
|
|||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
DIRS = public src
|
|
||||||
|
|
||||||
TEST_DIRS += tests
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
7
browser/components/migration/moz.build
Normal file
7
browser/components/migration/moz.build
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
DIRS += ['public', 'src']
|
||||||
|
TEST_DIRS += ['tests']
|
5
browser/components/migration/public/moz.build
Normal file
5
browser/components/migration/public/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
5
browser/components/migration/src/moz.build
Normal file
5
browser/components/migration/src/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
5
browser/components/migration/tests/moz.build
Normal file
5
browser/components/migration/tests/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
27
browser/components/moz.build
Normal file
27
browser/components/moz.build
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
PARALLEL_DIRS += [
|
||||||
|
'about',
|
||||||
|
'certerror',
|
||||||
|
'dirprovider',
|
||||||
|
'downloads',
|
||||||
|
'feeds',
|
||||||
|
'places',
|
||||||
|
'preferences',
|
||||||
|
'privatebrowsing',
|
||||||
|
'search',
|
||||||
|
'sessionstore',
|
||||||
|
'shell',
|
||||||
|
'sidebar',
|
||||||
|
'tabview',
|
||||||
|
'migration',
|
||||||
|
]
|
||||||
|
|
||||||
|
if CONFIG['MOZ_SAFE_BROWSING']:
|
||||||
|
PARALLEL_DIRS += ['safebrowsing']
|
||||||
|
|
||||||
|
TEST_DIRS += ['test']
|
||||||
|
DIRS += ['build']
|
@ -10,10 +10,6 @@ VPATH = @srcdir@
|
|||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
DIRS = src
|
|
||||||
|
|
||||||
TEST_DIRS += tests
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|
||||||
XPIDL_FLAGS += -I$(topsrcdir)/browser/components/
|
XPIDL_FLAGS += -I$(topsrcdir)/browser/components/
|
||||||
|
7
browser/components/places/moz.build
Normal file
7
browser/components/places/moz.build
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
DIRS += ['src']
|
||||||
|
TEST_DIRS += ['tests']
|
5
browser/components/places/src/moz.build
Normal file
5
browser/components/places/src/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
@ -15,6 +15,4 @@ MODULE = test_browser_places
|
|||||||
|
|
||||||
XPCSHELL_TESTS = unit
|
XPCSHELL_TESTS = unit
|
||||||
|
|
||||||
DIRS = browser chrome
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
5
browser/components/places/tests/browser/moz.build
Normal file
5
browser/components/places/tests/browser/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
5
browser/components/places/tests/chrome/moz.build
Normal file
5
browser/components/places/tests/chrome/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
6
browser/components/places/tests/moz.build
Normal file
6
browser/components/places/tests/moz.build
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
DIRS += ['browser', 'chrome']
|
@ -10,12 +10,6 @@ VPATH = @srcdir@
|
|||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
PARALLEL_DIRS = \
|
|
||||||
in-content \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
TEST_DIRS += tests
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|
||||||
DEFINES += \
|
DEFINES += \
|
||||||
|
@ -9,8 +9,6 @@ VPATH = @srcdir@
|
|||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
TEST_DIRS += tests
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|
||||||
DEFINES += \
|
DEFINES += \
|
||||||
|
6
browser/components/preferences/in-content/moz.build
Normal file
6
browser/components/preferences/in-content/moz.build
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
TEST_DIRS += ['tests']
|
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
7
browser/components/preferences/moz.build
Normal file
7
browser/components/preferences/moz.build
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
PARALLEL_DIRS += ['in-content']
|
||||||
|
TEST_DIRS += ['tests']
|
5
browser/components/preferences/tests/moz.build
Normal file
5
browser/components/preferences/tests/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
@ -11,8 +11,4 @@ include $(DEPTH)/config/autoconf.mk
|
|||||||
|
|
||||||
MODULE = privatebrowsing
|
MODULE = privatebrowsing
|
||||||
|
|
||||||
DIRS = src
|
|
||||||
|
|
||||||
TEST_DIRS += test
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
7
browser/components/privatebrowsing/moz.build
Normal file
7
browser/components/privatebrowsing/moz.build
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
DIRS += ['src']
|
||||||
|
TEST_DIRS += ['test']
|
5
browser/components/privatebrowsing/src/moz.build
Normal file
5
browser/components/privatebrowsing/src/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
@ -12,7 +12,4 @@ include $(DEPTH)/config/autoconf.mk
|
|||||||
|
|
||||||
MODULE = test_privatebrowsing
|
MODULE = test_privatebrowsing
|
||||||
|
|
||||||
DIRS += browser \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
@ -12,6 +12,4 @@ include $(DEPTH)/config/autoconf.mk
|
|||||||
|
|
||||||
MODULE = test_privatebrowsing
|
MODULE = test_privatebrowsing
|
||||||
|
|
||||||
DIRS += perwindow
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
17
browser/components/privatebrowsing/test/browser/moz.build
Normal file
17
browser/components/privatebrowsing/test/browser/moz.build
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
# We have three category of browser-chrome tests:
|
||||||
|
# global: these tests focus on the global PB service implementation.
|
||||||
|
# perwindow: these tests focus on the per-window PB implementation.
|
||||||
|
# obsolete: these tests focus on the global mode, but the functionality
|
||||||
|
# that they are testing is specific to the global mode, and
|
||||||
|
# will never have a per-window counterpart.
|
||||||
|
#
|
||||||
|
# As a transition plan, we have divided the existing tests into the
|
||||||
|
# global and obsolete categories, and we'll then focus on rewriting the
|
||||||
|
# global tests to test the per-window mode.
|
||||||
|
|
||||||
|
DIRS += ['perwindow']
|
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
7
browser/components/privatebrowsing/test/moz.build
Normal file
7
browser/components/privatebrowsing/test/moz.build
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
DIRS += ['browser']
|
||||||
|
|
@ -10,6 +10,4 @@ VPATH = @srcdir@
|
|||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
TEST_DIRS += content/test
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
5
browser/components/safebrowsing/content/test/moz.build
Normal file
5
browser/components/safebrowsing/content/test/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
7
browser/components/safebrowsing/moz.build
Normal file
7
browser/components/safebrowsing/moz.build
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
TEST_DIRS += ['content/test']
|
||||||
|
|
@ -9,6 +9,4 @@ VPATH = @srcdir@
|
|||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
TEST_DIRS += test
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
6
browser/components/search/moz.build
Normal file
6
browser/components/search/moz.build
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
TEST_DIRS += ['test']
|
5
browser/components/search/test/moz.build
Normal file
5
browser/components/search/test/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
@ -18,8 +18,4 @@ XPIDLSRCS = \
|
|||||||
nsISessionStore.idl \
|
nsISessionStore.idl \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
DIRS = src
|
|
||||||
|
|
||||||
TEST_DIRS = test
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
7
browser/components/sessionstore/moz.build
Normal file
7
browser/components/sessionstore/moz.build
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
DIRS += ['src']
|
||||||
|
TEST_DIRS += ['test']
|
5
browser/components/sessionstore/src/moz.build
Normal file
5
browser/components/sessionstore/src/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
5
browser/components/sessionstore/test/moz.build
Normal file
5
browser/components/sessionstore/test/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
@ -9,8 +9,4 @@ VPATH = @srcdir@
|
|||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
DIRS = public src
|
|
||||||
|
|
||||||
TEST_DIRS += test
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
7
browser/components/shell/moz.build
Normal file
7
browser/components/shell/moz.build
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
DIRS += ['public', 'src']
|
||||||
|
TEST_DIRS += ['test']
|
5
browser/components/shell/public/moz.build
Normal file
5
browser/components/shell/public/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
5
browser/components/shell/src/moz.build
Normal file
5
browser/components/shell/src/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
5
browser/components/shell/test/moz.build
Normal file
5
browser/components/shell/test/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
5
browser/components/sidebar/moz.build
Normal file
5
browser/components/sidebar/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
@ -10,8 +10,6 @@ VPATH = @srcdir@
|
|||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
TEST_DIRS += test
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|
||||||
libs::
|
libs::
|
||||||
|
6
browser/components/tabview/moz.build
Normal file
6
browser/components/tabview/moz.build
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
||||||
|
TEST_DIRS += ['test']
|
5
browser/components/tabview/test/moz.build
Normal file
5
browser/components/tabview/test/moz.build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# vim: set filetype=python:
|
||||||
|
# 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/.
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user