mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
d2ecf8ad90
Imports the JS QR Code reader library[1]. This library was ported to JavaScript by Lazar Laszlo <lazarsoft@gmail.com>. The port is made available under the Apache 2.0 license. This library is based on the Java ZXing project[2] by the ZXing team. It is also made available under the Apache 2.0 license. [1]: https://github.com/jryans/jsqrcode [2]: https://github.com/zxing/zxing --HG-- rename : toolkit/devtools/qrcode/encoder/moz.build => toolkit/devtools/qrcode/decoder/moz.build rename : toolkit/devtools/qrcode/qrcode.js => toolkit/devtools/qrcode/index.js
20 lines
562 B
Python
20 lines
562 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/.
|
|
|
|
PARALLEL_DIRS += [
|
|
'decoder',
|
|
'encoder'
|
|
]
|
|
|
|
JS_MODULES_PATH = 'modules/devtools/qrcode'
|
|
|
|
EXTRA_JS_MODULES += [
|
|
'index.js',
|
|
]
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['tests/unit/xpcshell.ini']
|
|
MOCHITEST_CHROME_MANIFESTS += ['tests/mochitest/chrome.ini']
|