https://github.com/mozilla/gecko-dev
Revision 8e3301a7f6e45117d5ac964173192e35664af7f1 authored by Gabor Krizsanits on 31 August 2016, 08:59:28 UTC, committed by Gabor Krizsanits on 31 August 2016, 08:59:28 UTC
--HG--
extra : source : 6a32c1e67f222930df2fc7f0b1806c365af3187b
extra : intermediate-source : 8fd9e2518fc2730431cca774b377ed5f7bf577fe
1 parent 70097db
Raw File
Tip revision: 8e3301a7f6e45117d5ac964173192e35664af7f1 authored by Gabor Krizsanits on 31 August 2016, 08:59:28 UTC
Bug 1297446 - Shimwaiver for l10n. r=billm a=lizzard
Tip revision: 8e3301a
moz.build
# -*- 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/.

with Files('**'):
    BUG_COMPONENT = ('Core', 'Layout')

DIRS += [
    'style',
    'base',
    'generic',
    'forms',
    'tables',
    'svg',
    'xul',
    'ipc',
    'mathml',
    'inspector',
    'tools/recording',
    'reftests',
]


IPDL_SOURCES = [
    'printing/ipc/PRemotePrintJob.ipdl',
]

if CONFIG['NS_PRINTING']:
    DIRS += ['printing']

TEST_DIRS += [
    'tools/reftest',
]

DIRS += ['build', 'media']

if CONFIG['MOZ_DEBUG']:
    TEST_DIRS += ['tools/layout-debug']

CRASHTEST_MANIFESTS += ['../testing/crashtest/crashtests.list']
back to top