summaryrefslogtreecommitdiff
path: root/caps/moz.build
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2021-11-23 03:11:24 -0500
committerMatt A. Tobin <email@mattatobin.com>2021-11-23 03:11:24 -0500
commit54276d068cdb87c3600233b66702b12be697ed68 (patch)
tree5bf85359e76eebd9a92baf7f8c703d3e93ac1f29 /caps/moz.build
parentbaad25e39733dfc3dd310198fdcced00ffbef68b (diff)
downloadaura-central-54276d068cdb87c3600233b66702b12be697ed68.tar.gz
Issue %3005 - Centralize the Security Features and locate them to system/security
Diffstat (limited to 'caps/moz.build')
-rw-r--r--caps/moz.build57
1 files changed, 0 insertions, 57 deletions
diff --git a/caps/moz.build b/caps/moz.build
deleted file mode 100644
index 42bb5ded3..000000000
--- a/caps/moz.build
+++ /dev/null
@@ -1,57 +0,0 @@
-# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# 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/.
-
-MOCHITEST_MANIFESTS += ['tests/mochitest/mochitest.ini']
-MOCHITEST_CHROME_MANIFESTS += ['tests/mochitest/chrome.ini']
-BROWSER_CHROME_MANIFESTS += ['tests/mochitest/browser.ini']
-XPCSHELL_TESTS_MANIFESTS += ['tests/unit/xpcshell.ini']
-
-# Hack to make this file available as a resource:// URI.
-TESTING_JS_MODULES += [
- 'tests/mochitest/resource_test_file.html',
-]
-
-XPIDL_SOURCES += [
- 'nsIAddonPolicyService.idl',
- 'nsIDomainPolicy.idl',
- 'nsIPrincipal.idl',
- 'nsIScriptSecurityManager.idl',
-]
-
-XPIDL_MODULE = 'caps'
-
-EXPORTS += [
- 'nsJSPrincipals.h',
- 'nsNullPrincipal.h',
- 'nsNullPrincipalURI.h',
-]
-
-EXPORTS.mozilla = [
- 'BasePrincipal.h'
-]
-
-SOURCES += [
- 'BasePrincipal.cpp',
- 'DomainPolicy.cpp',
- 'nsJSPrincipals.cpp',
- 'nsNullPrincipal.cpp',
- 'nsNullPrincipalURI.cpp',
- 'nsPrincipal.cpp',
- 'nsScriptSecurityManager.cpp',
- 'nsSystemPrincipal.cpp',
-]
-
-LOCAL_INCLUDES += [
- '/dom/base',
- '/js/xpconnect/src',
- '/system/docshell/base',
-]
-
-if CONFIG['ENABLE_TESTS']:
- DIRS += ['tests/gtest']
-
-include('/ipc/chromium/chromium-config.mozbuild')
-
-FINAL_LIBRARY = 'xul'