diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-11-04 13:59:16 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2020-11-04 13:59:16 -0500 |
commit | 6f76f1cb362b98fc617c5c0735cdacee64103e89 (patch) | |
tree | d9628c2b71e556c665a4582234e2bad9e0de12be /js/src/proxy | |
parent | 383bc182e3a3fe53cf79a51bc36c6218334d93b5 (diff) | |
download | uxp-6f76f1cb362b98fc617c5c0735cdacee64103e89.tar.gz |
Issue #1676 - Part 14: Split proxy sources out of js/src/moz.build
Diffstat (limited to 'js/src/proxy')
-rw-r--r-- | js/src/proxy/moz.build | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/js/src/proxy/moz.build b/js/src/proxy/moz.build new file mode 100644 index 0000000000..72082df858 --- /dev/null +++ b/js/src/proxy/moz.build @@ -0,0 +1,23 @@ +# -*- 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/. + +include('../js-config.mozbuild') +include('../js-cxxflags.mozbuild') + +FINAL_LIBRARY = "js" + +# Includes should be relative to parent path +LOCAL_INCLUDES += ["!..", ".."] + +SOURCES += [ + 'BaseProxyHandler.cpp', + 'CrossCompartmentWrapper.cpp', + 'DeadObjectProxy.cpp', + 'OpaqueCrossCompartmentWrapper.cpp', + 'Proxy.cpp', + 'ScriptedProxyHandler.cpp', + 'SecurityWrapper.cpp', + 'Wrapper.cpp', +] |