mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
395e2e581b
- Bug 1219494 - Part 2. gfx/2d and gfxCrash. r=milan (2beb096938) - Bug 1233069 - add override declarations to Windows graphics headers; r=Bas (a7f6e7d7f4) - Bug 1230357. Enable subpixel text on skia content backends. r=lsalzman (86d91dece3) - Bug 1225977 - fix DrawTargetSkia::MaskSurface with non-zero offset. r=jmuizelaar (5d63e35dc7) - Bug 1230740 - wallpaper patch for a missing nullptr scenario. r=bas (bdfadb90ae) - Bug 1233401 - Do Statistics static initialization from JS_Init; r=jandem (5f8383cd4a) - Bug 1232113 - "Make the format specifiers in JS_snprintf() invocations more portable". r=evilpies (4b0481a222) - Bug 1233722 - Add a documentation comment for JSOP_DEBUGCHECKSELFHOSTED. DONTBUILD. r=efaust (741fedfca9) - Bug 1233722 - Followup: Differentiate between non-debug and opt builds. (rs=arai) DONTBUILD comment-only (234db53445) - Bug 1227144 - Remove unused AutoRegExpStaticsBuffer; r=jonco (b7a21b5471) - Bug 1233302: Don't seed the SavedStacks PRNG unless we're actually going to use it. r=fitzgen (4763a5eab5) - Bug 1233187 - Use normal Rooted for AutoLocationValueRooter; r=fitzgen (90aea4363c) - Bug 1208850 - Inline functions exported to self-hosting global. r=till (b0fbfc7245) - Bug 1197932 - Remove Nightly-only restriction from ES6 Classes. (r=jorendorff) (11e58dfe79) - Bug 1233011 - SharedArrayBuffer subclassing + tests. r=efaust (95c08f129e) - Bug 1232264 - SharedArrayBuffer is only a constructor. r=arai (ae98086e9b) - Bug 1233863 - ARM64: Set up pseudo stack pointer in proglogues. r=sstangl (9db659f62b) - Bug 1232269 - Use the correct receiver when calling an own getter or setter on an unboxed object, r=jandem. (b28b8e4061) - Bug 1233096 - Give JS::ubi::RootList its full type name as its concreteTypeName; r=jimb (6cab2fd056) - Bug 1229829 - make sameBuffer more discriminating. r=waldo (fa7723a152) - Bug 1233175 - refine an assertion. r=terrence (3bc1da0783) - Bug 1231314 - Turn mozilla-config.h and js-confdefs.h into CONFIGURE_DEFINE_FILES. r=gps (b20e88acbb) - Bug 1233966 - build fixes for FreeBSD. r=jrmuizel (a94c01b3aa)
80 lines
1.9 KiB
INI
80 lines
1.9 KiB
INI
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# 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/.
|
|
|
|
with Files('**/Makefile.in'):
|
|
BUG_COMPONENT = ('Core', 'Build Config')
|
|
FINAL = True
|
|
|
|
CONFIGURE_SUBST_FILES += [
|
|
'config/autoconf.mk',
|
|
'config/emptyvars.mk',
|
|
]
|
|
|
|
if CONFIG['ENABLE_CLANG_PLUGIN']:
|
|
DIRS += ['build/clang-plugin']
|
|
|
|
DIRS += [
|
|
'config',
|
|
'python',
|
|
]
|
|
|
|
if not CONFIG['JS_STANDALONE']:
|
|
CONFIGURE_SUBST_FILES += [
|
|
'tools/update-packaging/Makefile',
|
|
]
|
|
CONFIGURE_DEFINE_FILES += [
|
|
'mozilla-config.h',
|
|
]
|
|
|
|
DIRS += [
|
|
'build',
|
|
'probes',
|
|
]
|
|
|
|
DIRS += [
|
|
'mfbt',
|
|
'config/external/zlib',
|
|
]
|
|
|
|
if not CONFIG['JS_STANDALONE']:
|
|
|
|
if CONFIG['MOZ_MEMORY']:
|
|
DIRS += ['memory']
|
|
|
|
DIRS += [
|
|
'mozglue',
|
|
'memory/fallible',
|
|
'memory/mozalloc',
|
|
'memory/volatile',
|
|
]
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android' and int(CONFIG['MOZ_ANDROID_MIN_SDK_VERSION']) < 11:
|
|
DIRS += ['other-licenses/android']
|
|
|
|
if not CONFIG['JS_STANDALONE']:
|
|
DIRS += ['xpcom/xpidl']
|
|
|
|
if CONFIG['COMPILE_ENVIRONMENT'] and not CONFIG['LIBXUL_SDK']:
|
|
DIRS += ['config/external/nspr']
|
|
|
|
if not CONFIG['JS_STANDALONE']:
|
|
DIRS += [
|
|
'config/external',
|
|
'config/external/nss',
|
|
]
|
|
|
|
if CONFIG['BUILD_CTYPES']:
|
|
DIRS += ['config/external/ffi']
|
|
if CONFIG['USE_ICU']:
|
|
DIRS += ['config/external/icu']
|
|
DIRS += ['js/src']
|
|
|
|
if not CONFIG['JS_STANDALONE'] and CONFIG['MOZ_BUILD_APP']:
|
|
# Bring in the configuration for the configured application.
|
|
include('/' + CONFIG['MOZ_BUILD_APP'] + '/app.mozbuild')
|
|
|
|
include('build/templates.mozbuild')
|