author | Gregory Szorc <gps@mozilla.com> |
Thu, 13 Nov 2014 19:30:21 -0800 | |
changeset 215758 | b1a9e41d3f4b1d2720a6f95b84a7f2f8aa9feb48 |
parent 215757 | dad976bc94f3f51c050715402546c3c0741d2299 |
child 215759 | 64206634959a2e84eefec40d1da0122c7a63bc20 |
child 215841 | 708b312b230fdfbdb1b23399a6842c243a3ecd9e |
push id | 51845 |
push user | cbook@mozilla.com |
push date | Fri, 14 Nov 2014 12:23:21 +0000 |
treeherder | mozilla-inbound@da57927b609d [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | glandium |
bugs | 1098135 |
milestone | 36.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/browser/experiments/Makefile.in +++ b/browser/experiments/Makefile.in @@ -3,15 +3,14 @@ # file, You can obtain one at http://mozilla.org/MPL/2.0/. include $(topsrcdir)/config/rules.mk # This is so hacky. Waiting on bug 988938. addondir = $(srcdir)/test/addons testdir = $(abspath $(DEPTH)/_tests/xpcshell/browser/experiments/test/xpcshell) -libs:: +misc:: $(call mkdir_deps,$(testdir)) $(EXIT_ON_ERROR) \ - $(NSINSTALL) -D $(testdir); \ for dir in $(addondir)/*; do \ base=`basename $$dir`; \ (cd $$dir && zip -qr $(testdir)/$$base.xpi *); \ done
--- a/browser/experiments/moz.build +++ b/browser/experiments/moz.build @@ -1,12 +1,14 @@ # 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/. +HAS_MISC_RULE = True + EXTRA_COMPONENTS += [ 'Experiments.manifest', 'ExperimentsService.js', ] EXTRA_JS_MODULES.experiments += [ 'Experiments.jsm', ]
--- a/layout/style/test/Makefile.in +++ b/layout/style/test/Makefile.in @@ -18,10 +18,11 @@ ifdef COMPILE_ENVIRONMENT css_properties.js: host_ListCSSProperties$(HOST_BIN_SUFFIX) css_properties_like_longhand.js Makefile $(RM) $@ ./host_ListCSSProperties$(HOST_BIN_SUFFIX) > $@ cat $(srcdir)/css_properties_like_longhand.js >> $@ GARBAGE += css_properties.js TEST_FILES := css_properties.js TEST_DEST = $(DEPTH)/_tests/testing/mochitest/tests/$(relativesrcdir) +TEST_TARGET := misc INSTALL_TARGETS += TEST endif
--- a/layout/style/test/moz.build +++ b/layout/style/test/moz.build @@ -1,14 +1,16 @@ # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- # 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/. +HAS_MISC_RULE = True + HostSimplePrograms([ 'host_ListCSSProperties', ]) MOCHITEST_MANIFESTS += [ 'chrome/mochitest.ini', 'css-visited/mochitest.ini', 'mochitest.ini',