2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2014-05-15 14:20:00 +04:00
|
|
|
# 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/.
|
|
|
|
|
2017-02-06 17:45:55 +03:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "DOM: Security")
|
|
|
|
|
2014-05-15 14:20:00 +04:00
|
|
|
EXPORTS.mozilla.dom += [
|
|
|
|
"CryptoBuffer.h",
|
2014-06-24 01:25:13 +04:00
|
|
|
"CryptoKey.h",
|
2014-09-27 22:22:57 +04:00
|
|
|
"KeyAlgorithmProxy.h",
|
2014-05-15 14:20:00 +04:00
|
|
|
"WebCryptoCommon.h",
|
|
|
|
"WebCryptoTask.h",
|
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
"CryptoBuffer.cpp",
|
2014-06-24 01:25:13 +04:00
|
|
|
"CryptoKey.cpp",
|
2014-09-27 22:22:57 +04:00
|
|
|
"KeyAlgorithmProxy.cpp",
|
2014-05-15 14:20:00 +04:00
|
|
|
"WebCryptoTask.cpp",
|
|
|
|
]
|
|
|
|
|
|
|
|
include("/ipc/chromium/chromium-config.mozbuild")
|
|
|
|
|
2014-07-23 03:37:51 +04:00
|
|
|
FINAL_LIBRARY = "xul"
|
2014-05-15 14:20:00 +04:00
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
2015-05-26 20:31:23 +03:00
|
|
|
"/security/manager/ssl",
|
2015-09-11 17:01:20 +03:00
|
|
|
"/xpcom/build",
|
2014-05-15 14:20:00 +04:00
|
|
|
]
|
|
|
|
|
2014-07-26 10:17:24 +04:00
|
|
|
MOCHITEST_MANIFESTS += ["test/mochitest.ini"]
|
2019-04-03 01:25:04 +03:00
|
|
|
BROWSER_CHROME_MANIFESTS += ["test/browser/browser.ini"]
|