mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
504b25c49d
--- python/mozbuild/mozbuild/backend/recursivemake.py | 22 ++++++ python/mozbuild/mozbuild/frontend/data.py | 12 +++ python/mozbuild/mozbuild/frontend/emitter.py | 5 ++ .../mozbuild/mozbuild/frontend/sandbox_symbols.py | 16 ++++ python/mozbuild/mozbuild/test/backend/common.py | 5 ++ .../mozbuild/test/backend/data/exports/moz.build | 8 ++ .../mozbuild/test/backend/test_recursivemake.py | 22 ++++++ .../mozbuild/test/frontend/data/exports/moz.build | 15 ++++ .../mozbuild/test/frontend/test_emitter.py | 37 +++++++++ .../mozbuild/test/frontend/test_sandbox.py | 8 ++ python/mozbuild/mozbuild/test/test_util.py | 71 +++++++++++++++++ python/mozbuild/mozbuild/util.py | 81 ++++++++++++++++++++ 12 files changed, 302 insertions(+) create mode 100644 python/mozbuild/mozbuild/test/backend/data/exports/moz.build create mode 100644 python/mozbuild/mozbuild/test/frontend/data/exports/moz.build |
||
---|---|---|
.. | ||
blessings | ||
codegen | ||
mach | ||
mock-1.0.0 | ||
mozboot | ||
mozbuild | ||
psutil | ||
simplejson-2.1.1 | ||
virtualenv | ||
which | ||
Makefile.in | ||
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: * 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