2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 01:20:02 +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/.
|
|
|
|
|
2013-07-10 23:08:21 +04:00
|
|
|
NO_DIST_INSTALL = True
|
|
|
|
|
2013-10-25 03:23:05 +04:00
|
|
|
SOURCES += [
|
2013-04-24 01:54:15 +04:00
|
|
|
'TestComponent.cpp',
|
|
|
|
]
|
|
|
|
|
2014-08-24 04:11:05 +04:00
|
|
|
XPCOMBinaryComponent('testcomponent')
|
2013-09-20 01:29:32 +04:00
|
|
|
|
2013-11-27 17:55:07 +04:00
|
|
|
DEFINES['LIBRARY_FILENAME'] = '%s%s%s' % (
|
|
|
|
CONFIG['DLL_PREFIX'],
|
|
|
|
LIBRARY_NAME,
|
|
|
|
CONFIG['DLL_SUFFIX']
|
|
|
|
)
|
2014-07-23 08:30:52 +04:00
|
|
|
|
2014-08-06 02:25:33 +04:00
|
|
|
# Need to link with CoreFoundation on Mac
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
|
|
|
|
OS_LIBS += CONFIG['TK_LIBS']
|
2014-12-11 09:56:31 +03:00
|
|
|
|
|
|
|
FAIL_ON_WARNINGS = True
|