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']:
|
2014-09-03 05:10:54 +00:00
|
|
|
Program(CONFIG['MOZ_APP_NAME'] + "-bin")
|
2013-05-01 18:05:40 +00:00
|
|
|
else:
|
2014-09-03 05:10:54 +00:00
|
|
|
Program(CONFIG['MOZ_APP_NAME'])
|
2014-07-30 07:24:00 +00:00
|
|
|
if CONFIG['MOZ_B2G_LOADER']:
|
|
|
|
SOURCES += [
|
|
|
|
'B2GLoader.cpp',
|
|
|
|
]
|
|
|
|
|
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
|
|
|
|
2014-08-07 05:21:03 +00:00
|
|
|
USE_LIBS += [
|
|
|
|
'zlib',
|
|
|
|
]
|
2014-07-23 04:30:52 +00:00
|
|
|
|
2013-11-27 13:55:07 +00:00
|
|
|
DEFINES['XPCOM_GLUE'] = True
|
|
|
|
|
2014-07-08 06:37:57 +00:00
|
|
|
for var in ('MOZ_APP_NAME', 'MOZ_APP_VERSION', 'MOZ_UPDATER'):
|
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
|
|
|
|
2014-07-23 04:30:52 +00:00
|
|
|
USE_LIBS += [
|
|
|
|
'display',
|
|
|
|
'mozpng',
|
|
|
|
]
|
2014-08-05 22:25:33 +00:00
|
|
|
OS_LIBS += [
|
|
|
|
'ui',
|
|
|
|
'EGL',
|
|
|
|
'hardware_legacy',
|
|
|
|
'hardware',
|
|
|
|
'cutils',
|
|
|
|
]
|
|
|
|
OS_LIBS += CONFIG['MOZ_ZLIB_LIBS']
|
|
|
|
if CONFIG['ANDROID_VERSION'] in ('17', '18', '19'):
|
|
|
|
OS_LIBS += [
|
|
|
|
'gui',
|
|
|
|
'suspend',
|
|
|
|
]
|
|
|
|
OS_LIBS += [
|
|
|
|
'binder',
|
|
|
|
'utils',
|
|
|
|
]
|
|
|
|
|
2014-07-23 04:30:52 +00:00
|
|
|
USE_LIBS += [
|
|
|
|
'xpcomglue',
|
|
|
|
]
|
|
|
|
|
2014-03-05 00:39:06 +00:00
|
|
|
DISABLE_STL_WRAPPING = True
|
2014-08-05 22:25:33 +00:00
|
|
|
|
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT':
|
|
|
|
OS_LIBS += [
|
|
|
|
'version',
|
|
|
|
]
|