gecko-dev/python
Jonathan Watt 74925d32b1 Bug 1411212. Use HOST_OPTIMIZE_FLAGS to compile host tools, even when not cross-compiling. r=glandium
Prior to this change, --disable-optimize clobber builds on macOS took 50%
longer. Build telemetry shows over 80% of developer builds on macOS use
--disable-optimize.

The defaults for HOST_OPTIMIZE_FLAGS that are set in old-configure.in can be
overriden by setting the variable in your mozconfig. For example, setting:

HOST_OPTIMIZE_FLAGS=-O1

Differential Revision: https://phabricator.services.mozilla.com/D195459
2023-12-05 10:30:50 +00:00
..
docs
gdbpp/gdbpp Bug 1864675 - Add pretty printers for SyncedContext fields r=farre,nalexander 2023-12-01 11:07:22 +00:00
l10n Bug 1814969: Migrate ContextualIdentityService strings to Fluent r=geckoview-reviewers,fluent-reviewers,mconley,owlish,flod 2023-12-04 13:09:15 +00:00
lldbutils
mach Bug 1867990 - Fix black formatting errors that snuck in due to regression, r=linter-reviewers,taskgraph-reviewers,releng-reviewers,bhearsum,sylvestre 2023-12-04 14:51:39 +00:00
mozboot Bug 1867990 - Fix black formatting errors that snuck in due to regression, r=linter-reviewers,taskgraph-reviewers,releng-reviewers,bhearsum,sylvestre 2023-12-04 14:51:39 +00:00
mozbuild Bug 1411212. Use HOST_OPTIMIZE_FLAGS to compile host tools, even when not cross-compiling. r=glandium 2023-12-05 10:30:50 +00:00
mozlint Bug 1866176 - normalize paths in FileFinder r=ahal,firefox-build-system-reviewers,glandium 2023-12-04 17:14:29 +00:00
mozperftest
mozrelease
mozterm
mozversioncontrol Bug 1867990 - Fix black formatting errors that snuck in due to regression, r=linter-reviewers,taskgraph-reviewers,releng-reviewers,bhearsum,sylvestre 2023-12-04 14:51:39 +00:00
sites Bug 1854327 - [docs] Upgrade Sphinx==6.2.1 + other dependencies, r=firefox-source-docs-reviewers,mach-reviewers,sylvestre,championshuttler,ahochheiden 2023-12-04 21:26:17 +00:00
README
mach_commands.py
moz.build

README

This directory contains common Python code.

The basic rule is that if Python code is cross-module (that's "module" in the
Mozilla meaning - as in "module ownership") and is MPL-compatible, it should
go here.

What should not go here:

* Vendored python modules (use third_party/python instead)
* Python that is not MPL-compatible (see other-licenses/)
* Python that has good reason to remain close to its "owning" (Mozilla)
  module (e.g. it is only being consumed from there).

Historical information can be found at
https://bugzilla.mozilla.org/show_bug.cgi?id=775243
https://bugzilla.mozilla.org/show_bug.cgi?id=1346025