https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 171d4ac7b5c529f27694705c7f65eeffbd380725 authored by ffxbld on 27 October 2015, 00:02:27 UTC
Added FIREFOX_42_0_RELEASE FIREFOX_42_0_BUILD1 tag(s) for changeset b1a68883552e. DONTBUILD CLOSED TREE a=release
Tip revision: 171d4ac
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/.

GeckoProgram('gdb-tests', linkage=None)

UNIFIED_SOURCES += [
    'gdb-tests.cpp',
    'tests/test-asmjs.cpp',
    'tests/test-GCCellPtr.cpp',
    'tests/test-Interpreter.cpp',
    'tests/test-jsid.cpp',
    'tests/test-JSObject.cpp',
    'tests/test-JSString.cpp',
    'tests/test-JSSymbol.cpp',
    'tests/test-jsval.cpp',
    'tests/test-prettyprinters.cpp',
    'tests/test-Root.cpp',
    'tests/typedef-printers.cpp',
]

DEFINES['EXPORT_JS_API'] = True

LOCAL_INCLUDES += ['..']
GENERATED_INCLUDES += ['..']

USE_LIBS += [
    'static:js',
]

OS_LIBS += CONFIG['MOZ_ZLIB_LIBS']

FAIL_ON_WARNINGS = True
back to top