gecko-dev/python
Nick Alexander aa96e0fc28 Bug 1651130 - Part 2: Add a new `tools/update-programs` build project. r=froydnj
Here "update programs" refers to the various standalone binaries we
produce in order to update Firefox.  There's not strong conceptual
coherence between them; rather, it's the pieces that the
Install/Update team generally work on.

To use this build project, prepare a minimal mozconfig with
`--enable-project=tools/update-programs`.  Depending on the mozconfig
options and host and target OS, some of the following will be built:

1. the maintenance service;
2. the updater binary;
3. the Windows Default Browser Agent;
4. the Background Update Agent.

Differential Revision: https://phabricator.services.mozilla.com/D82644
2020-07-08 23:03:21 +00:00
..
devtools/migrate-l10n Bug 1559975 - fix python2 linter errors for python/devtools r=ahal 2019-07-16 17:46:08 +00:00
docs
gdbpp/gdbpp Bug 1622868 - Fix ns*String pretty-printers, r=glandium 2020-03-17 04:51:21 +00:00
l10n Bug 1647687 - Remove Fluent migration recipes for Firefox 77, r=Pike 2020-06-29 09:59:50 +00:00
lldbutils Bug 1646421 - flake8 Fix a bunch of actual errors r=ahal 2020-06-20 09:46:45 +00:00
mach Bug 1646832: Use NoopErrorReporter for build team members r=rstewart 2020-07-07 21:39:59 +00:00
mozboot Bug 1645196: Tune git settings to improve performance r=rstewart 2020-07-07 18:29:37 +00:00
mozbuild Bug 1651130 - Part 2: Add a new `tools/update-programs` build project. r=froydnj 2020-07-08 23:03:21 +00:00
mozlint Bug 1647265 - mozlint: when type is 'regex', add the capability to ignore the case r=ahal 2020-06-23 21:45:16 +00:00
mozperftest Bug 1651048 - remove unused transformer r=sparky 2020-07-07 12:48:47 +00:00
mozrelease Bug 1642868 - Update verify tests check ja-JP-mac on all platforms now r=nthomas 2020-06-09 15:23:18 +00:00
mozterm
mozversioncontrol Bug 1645196: Tune git settings to improve performance r=rstewart 2020-07-07 18:29:37 +00:00
safety Bug 1619930 Update python-safety dependencies r=mtabara 2020-03-05 13:48:16 +00:00
README
mach_commands.py Backed out changeset 19269e470c71 (bug 1594914) for causing bustages. 2020-07-09 01:36:29 +03:00
moz.build Bug 1644912 - remove python.ini r=sparky 2020-06-11 12:19:59 +00:00

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