2013-04-01 18:36:59 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:17 +00: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 18:05:40 +00:00
|
|
|
if not CONFIG['LIBXUL_SDK']:
|
|
|
|
if CONFIG['GAIADIR']:
|
|
|
|
PROGRAM = CONFIG['MOZ_APP_NAME'] + "-bin"
|
|
|
|
else:
|
|
|
|
PROGRAM = CONFIG['MOZ_APP_NAME']
|
2013-10-24 23:23:05 +00:00
|
|
|
SOURCES += [
|
2013-04-23 21:54:15 +00:00
|
|
|
'nsBrowserApp.cpp',
|
|
|
|
]
|
2014-02-24 13:30:25 +00: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 13:55:07 +00:00
|
|
|
|
|
|
|
DEFINES['XPCOM_GLUE'] = True
|
|
|
|
|
2014-03-17 16:58:16 +00:00
|
|
|
for var in ('MOZ_APP_NAME', 'MOZ_APP_VERSION', 'MOZ_UPDATER', 'MOZ_SERVICES_FXACCOUNTS'):
|
2013-11-27 13:55:07 +00:00
|
|
|
DEFINES[var] = CONFIG[var]
|
2014-02-10 18:41:02 +00: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-26 20:49:00 +00:00
|
|
|
|
|
|
|
LDFLAGS += ['-Wl,--export-dynamic']
|
2014-03-05 00:39:06 +00:00
|
|
|
|
|
|
|
DISABLE_STL_WRAPPING = True
|