Revision 8598e8717ddd8daf383d81952a6c02a29a4ecb60 authored by Jordan Lund on 25 February 2016, 21:25:37 UTC, committed by Jordan Lund on 25 February 2016, 21:25:37 UTC

I tested this via running fx_desktop_build.py with and without this patch and
compared self.config:
```
./scripts/fx_desktop_build.py --cfg
configs/builds/releng_base_linux_64_builds.py --custom-build-variant-cfg debug
--branch date --build-pool production --developer-run --dump-config
```
diff -pU 10 logs/localconfig_without_patch.json logs/localconfig_with_patch.json

here is the diff of the above:
http://people.mozilla.org/~jlund/update-channel-self-config.diff

MozReview-Commit-ID: J82rgamohTk

--HG--
extra : source : 9bcdab8d416f0ae3db1bef533f778d08d797f5dd
extra : intermediate-source : fd9990a554a2120bb0f9fe59f575562a808323c4
1 parent c8c77b1
Raw File
moz.build
# -*- 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/.

CONFIGURE_SUBST_FILES += ['installer/Makefile']

DIRS += [
    'app',
    'stub',
    'examples',
]

if CONFIG['MAKENSISU']:
    DIRS += ['installer/windows']

if CONFIG['OS_ARCH'] == 'WINNT':
    DIRS += ['tools/redit']

with Files('**'):
    BUG_COMPONENT = ('Toolkit', 'XULRunner')
back to top