2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:17 +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-05-01 22:05:40 +04:00
|
|
|
if not CONFIG['LIBXUL_SDK']:
|
|
|
|
if CONFIG['GAIADIR']:
|
|
|
|
PROGRAM = CONFIG['MOZ_APP_NAME'] + "-bin"
|
|
|
|
else:
|
|
|
|
PROGRAM = CONFIG['MOZ_APP_NAME']
|
2014-07-30 11:24:00 +04:00
|
|
|
if CONFIG['MOZ_B2G_LOADER']:
|
|
|
|
SOURCES += [
|
|
|
|
'B2GLoader.cpp',
|
|
|
|
]
|
|
|
|
|
2013-10-25 03:23:05 +04:00
|
|
|
SOURCES += [
|
2013-04-24 01:54:15 +04:00
|
|
|
'nsBrowserApp.cpp',
|
|
|
|
]
|
2014-02-24 17:30:25 +04:00
|
|
|
if CONFIG['_MSC_VER']:
|
|
|
|
# Always enter a Windows program through wmain, whether or not we're
|
|
|
|
# a console application.
|
|
|
|
WIN32_EXE_LDFLAGS += ['-ENTRY:wmainCRTStartup']
|
2013-11-27 17:55:07 +04:00
|
|
|
|
2014-07-23 08:30:52 +04:00
|
|
|
if not CONFIG['MOZ_NATIVE_ZLIB'] and not CONFIG['ZLIB_IN_MOZCONFIG']:
|
|
|
|
USE_LIBS += [
|
|
|
|
'mozz',
|
|
|
|
]
|
|
|
|
|
2013-11-27 17:55:07 +04:00
|
|
|
DEFINES['XPCOM_GLUE'] = True
|
|
|
|
|
2014-07-08 10:37:57 +04:00
|
|
|
for var in ('MOZ_APP_NAME', 'MOZ_APP_VERSION', 'MOZ_UPDATER'):
|
2013-11-27 17:55:07 +04:00
|
|
|
DEFINES[var] = CONFIG[var]
|
2014-02-10 22:41:02 +04:00
|
|
|
|
|
|
|
GENERATED_INCLUDES += [
|
|
|
|
'/build',
|
|
|
|
]
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/toolkit/xre',
|
|
|
|
'/xpcom/base',
|
|
|
|
'/xpcom/build',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/widget/gonk/libdisplay',
|
|
|
|
]
|
2014-02-27 00:49:00 +04:00
|
|
|
|
|
|
|
LDFLAGS += ['-Wl,--export-dynamic']
|
2014-03-05 04:39:06 +04:00
|
|
|
|
2014-07-23 08:30:52 +04:00
|
|
|
USE_LIBS += [
|
|
|
|
'display',
|
|
|
|
'mozpng',
|
|
|
|
]
|
|
|
|
if not CONFIG['MOZ_NATIVE_ZLIB']:
|
|
|
|
USE_LIBS += [
|
|
|
|
'mozz',
|
|
|
|
]
|
|
|
|
|
|
|
|
USE_LIBS += [
|
|
|
|
'xpcomglue',
|
|
|
|
]
|
|
|
|
|
2014-03-05 04:39:06 +04:00
|
|
|
DISABLE_STL_WRAPPING = True
|