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:01 +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/.
|
|
|
|
|
2014-10-30 07:06:12 +03:00
|
|
|
# mozglue is statically linked into GeckoPrograms on gtk builds, so
|
|
|
|
# we can use GeckoProgram, contrary to other platforms.
|
|
|
|
GeckoProgram('webapprt-stub')
|
2013-05-01 22:05:40 +04:00
|
|
|
|
2013-10-25 03:23:05 +04:00
|
|
|
SOURCES += [
|
2013-04-24 01:54:15 +04:00
|
|
|
'webapprt.cpp',
|
|
|
|
]
|
2013-08-22 10:55:59 +04:00
|
|
|
|
2014-02-18 10:03:08 +04:00
|
|
|
LOCAL_INCLUDES += [
|
2015-11-04 08:20:20 +03:00
|
|
|
'!/build',
|
2014-02-18 10:03:08 +04:00
|
|
|
'/toolkit/xre',
|
|
|
|
'/xpcom/base',
|
|
|
|
'/xpcom/build',
|
|
|
|
]
|
2014-03-05 04:39:06 +04:00
|
|
|
|
|
|
|
DISABLE_STL_WRAPPING = True
|
2014-07-24 19:55:33 +04:00
|
|
|
|
|
|
|
CXXFLAGS += CONFIG['TK_CFLAGS']
|
2014-08-06 02:25:33 +04:00
|
|
|
|
|
|
|
OS_LIBS += CONFIG['TK_LIBS']
|