From 55d067f4a66765182d627105c93dd5b042f3dca7 Mon Sep 17 00:00:00 2001 From: "L. David Baron" Date: Mon, 20 Apr 2015 23:10:40 -0700 Subject: [PATCH] Bug 1156111 patch 1 - Give layout/reftests/ its own moz.build file. r=gps --- layout/moz.build | 8 +------- layout/reftests/moz.build | 13 +++++++++++++ 2 files changed, 14 insertions(+), 7 deletions(-) create mode 100644 layout/reftests/moz.build diff --git a/layout/moz.build b/layout/moz.build index c7b095f75f20..7e36dae54a76 100644 --- a/layout/moz.build +++ b/layout/moz.build @@ -19,6 +19,7 @@ DIRS += [ 'mathml', 'inspector', 'tools/recording', + 'reftests', ] if CONFIG['NS_PRINTING']: @@ -33,11 +34,4 @@ DIRS += ['build', 'media'] if CONFIG['MOZ_DEBUG']: TEST_DIRS += ['tools/layout-debug'] -MOCHITEST_MANIFESTS += [ - 'reftests/fonts/math/mochitest.ini', - 'reftests/fonts/mochitest.ini', - 'reftests/fonts/mplus/mochitest.ini' -] - -REFTEST_MANIFESTS += ['reftests/reftest.list'] CRASHTEST_MANIFESTS += ['../testing/crashtest/crashtests.list'] diff --git a/layout/reftests/moz.build b/layout/reftests/moz.build new file mode 100644 index 000000000000..d145542d7a40 --- /dev/null +++ b/layout/reftests/moz.build @@ -0,0 +1,13 @@ +# -*- 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/. + +MOCHITEST_MANIFESTS += [ + 'fonts/math/mochitest.ini', + 'fonts/mochitest.ini', + 'fonts/mplus/mochitest.ini' +] + +REFTEST_MANIFESTS += ['reftest.list']