2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2016-06-03 21:29:21 +03: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/.
|
|
|
|
|
|
|
|
EXPORTS.mozilla.mscom += [
|
2016-06-03 21:30:31 +03:00
|
|
|
'COMApartmentRegion.h',
|
2016-07-27 20:44:29 +03:00
|
|
|
'COMPtrHolder.h',
|
2016-07-18 22:49:28 +03:00
|
|
|
'EnsureMTA.h',
|
2016-07-20 20:10:46 +03:00
|
|
|
'MainThreadRuntime.h',
|
2016-07-27 20:44:29 +03:00
|
|
|
'ProxyStream.h',
|
2016-07-19 22:13:31 +03:00
|
|
|
'Ptr.h',
|
2016-07-15 01:55:31 +03:00
|
|
|
'Utils.h',
|
2016-06-03 21:29:21 +03:00
|
|
|
]
|
|
|
|
|
2016-07-18 22:47:34 +03:00
|
|
|
SOURCES += [
|
|
|
|
'Utils.cpp',
|
|
|
|
]
|
|
|
|
|
2016-06-03 21:29:21 +03:00
|
|
|
UNIFIED_SOURCES += [
|
2016-07-18 22:49:28 +03:00
|
|
|
'EnsureMTA.cpp',
|
2016-07-20 20:10:46 +03:00
|
|
|
'MainThreadRuntime.cpp',
|
2016-07-27 20:44:29 +03:00
|
|
|
'ProxyStream.cpp',
|
2016-06-03 21:29:21 +03:00
|
|
|
]
|
|
|
|
|
2016-09-28 23:09:07 +03:00
|
|
|
if CONFIG['ACCESSIBILITY']:
|
|
|
|
EXPORTS.mozilla.mscom += [
|
2016-10-26 00:04:47 +03:00
|
|
|
'ActivationContext.h',
|
2016-09-28 23:09:07 +03:00
|
|
|
'DispatchForwarder.h',
|
|
|
|
'Interceptor.h',
|
|
|
|
'InterceptorLog.h',
|
|
|
|
'MainThreadHandoff.h',
|
|
|
|
'MainThreadInvoker.h',
|
|
|
|
'Registration.h',
|
|
|
|
'WeakRef.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
SOURCES += [
|
|
|
|
'Interceptor.cpp',
|
|
|
|
'Registration.cpp',
|
|
|
|
'WeakRef.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
2016-10-26 00:04:47 +03:00
|
|
|
'ActivationContext.cpp',
|
2016-09-28 23:09:07 +03:00
|
|
|
'DispatchForwarder.cpp',
|
|
|
|
'InterceptorLog.cpp',
|
|
|
|
'MainThreadHandoff.cpp',
|
|
|
|
'MainThreadInvoker.cpp',
|
|
|
|
]
|
|
|
|
|
2016-07-15 02:11:33 +03:00
|
|
|
LOCAL_INCLUDES += [
|
2016-10-26 00:43:40 +03:00
|
|
|
'/xpcom/base',
|
2016-07-15 02:11:33 +03:00
|
|
|
'/xpcom/build',
|
|
|
|
]
|
|
|
|
|
2016-06-03 21:29:21 +03:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
|
|
|
FINAL_LIBRARY = 'xul'
|