mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
55e70e5a93
--HG-- rename : dom/base/nsIContentSecurityPolicy.idl => dom/interfaces/security/nsIContentSecurityPolicy.idl rename : dom/base/nsCSPContext.cpp => dom/security/nsCSPContext.cpp rename : dom/base/nsCSPContext.h => dom/security/nsCSPContext.h rename : dom/base/nsCSPParser.cpp => dom/security/nsCSPParser.cpp rename : dom/base/nsCSPParser.h => dom/security/nsCSPParser.h rename : dom/base/nsCSPService.cpp => dom/security/nsCSPService.cpp rename : dom/base/nsCSPService.h => dom/security/nsCSPService.h rename : dom/base/nsCSPUtils.cpp => dom/security/nsCSPUtils.cpp rename : dom/base/nsCSPUtils.h => dom/security/nsCSPUtils.h
26 lines
599 B
Python
26 lines
599 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.mozilla.dom += [
|
|
'nsCSPContext.h',
|
|
'nsCSPService.h',
|
|
'nsCSPUtils.h',
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
'nsCSPContext.cpp',
|
|
'nsCSPParser.cpp',
|
|
'nsCSPService.cpp',
|
|
'nsCSPUtils.cpp',
|
|
]
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
LOCAL_INCLUDES += [
|
|
'/caps',
|
|
]
|