mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
623f6379a7
--HG-- rename : dom/src/json/moz.build => dom/json/moz.build rename : dom/src/json/nsJSON.cpp => dom/json/nsJSON.cpp rename : dom/src/json/nsJSON.h => dom/json/nsJSON.h rename : dom/src/json/test/mochitest.ini => dom/json/test/mochitest.ini rename : dom/src/json/test/test_json.html => dom/json/test/test_json.html rename : dom/src/json/test/unit/decodeFromStream-01.json => dom/json/test/unit/decodeFromStream-01.json rename : dom/src/json/test/unit/decodeFromStream-small.json => dom/json/test/unit/decodeFromStream-small.json rename : dom/src/json/test/unit/test_decodeFromStream.js => dom/json/test/unit/test_decodeFromStream.js rename : dom/src/json/test/unit/test_decode_long_input.js => dom/json/test/unit/test_decode_long_input.js rename : dom/src/json/test/unit/test_encode.js => dom/json/test/unit/test_encode.js rename : dom/src/json/test/unit/xpcshell.ini => dom/json/test/unit/xpcshell.ini
25 lines
579 B
Python
25 lines
579 B
Python
# -*- 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/.
|
|
|
|
EXPORTS += [
|
|
'nsJSON.h',
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
'nsJSON.cpp',
|
|
]
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
LOCAL_INCLUDES += [
|
|
'/content/base/src',
|
|
]
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['test/unit/xpcshell.ini']
|
|
MOCHITEST_MANIFESTS += ['test/mochitest.ini']
|