1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/jsd/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,37 @@ 1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- 1.5 +# vim: set filetype=python: 1.6 +# This Source Code Form is subject to the terms of the Mozilla Public 1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.9 + 1.10 +DIRS += ['idl'] 1.11 +TEST_TOOL_DIRS += ['test'] 1.12 + 1.13 +EXPORTS += [ 1.14 + 'jsdebug.h', 1.15 +] 1.16 + 1.17 +XPCSHELL_TESTS_MANIFESTS += ['test/xpcshell.ini'] 1.18 + 1.19 +UNIFIED_SOURCES += [ 1.20 + 'jsd_atom.cpp', 1.21 + 'jsd_high.cpp', 1.22 + 'jsd_hook.cpp', 1.23 + 'jsd_lock.cpp', 1.24 + 'jsd_obj.cpp', 1.25 + 'jsd_scpt.cpp', 1.26 + 'jsd_stak.cpp', 1.27 + 'jsd_step.cpp', 1.28 + 'jsd_text.cpp', 1.29 + 'jsd_val.cpp', 1.30 + 'jsd_xpc.cpp', 1.31 + 'jsdebug.cpp', 1.32 + 'jshash.cpp', 1.33 +] 1.34 + 1.35 +DEFINES['EXPORT_JSD_API'] = True 1.36 + 1.37 +if CONFIG['JS_THREADSAFE']: 1.38 + DEFINES['JS_THREADSAFE'] = True 1.39 + 1.40 +FINAL_LIBRARY = 'xul'