User:JoeyArmstrong/conversion
From MozillaWiki
Contents
moz.build
mozbuild conversion etherpad: http://etherpad.mozilla.org/mozbuild-conversion
Legend:
- logic - mozbuild logic, passthrough variables or subroutines.
- #1, #2 - Batches of directories containing converted Makefiles.
- inbound - patch reviewed + tested on try, submit to inbound.
- try - test results are pending
- review - code review pending.
http://trychooser.pub.build.mozilla.org/
completed
Variable | in_mozbuild | m-c wip | c-c conversion | phase-2 cleanup |
---|---|---|---|---|
logic, #1, #2, #3,cleanup, #4 | FIN | |||
|
logic, #2 | FIN | FIN | 882190 |
logic, #1, cleanup | NOP | |||
moz.build (indirect variables)
Variable | landed | m-c conversion | c-c conversion | phase-2 cleanup |
PP_TARGETS (862316) | ||||
DIST_FILES (indirect) | [870891] |
Configuration changes
Makefile.in token | moz.build token |
ASFILES = foo.asm | ASFILES += ['foo.asm', 'bar.asm'] |
CMMSRCS = foo.asm | CMM_SOURCES += ['foo.asm', 'bar.asm'] |
CSRCS = foo.asm | CSRCS += ['foo.asm', 'bar.asm'] |
HOST_LIBRARY_NAME | HOST_LIBRARY = 'host_foobar' |
PREF_JS_EXPORTS = $(srcdir)/prefs/foo.js | JS_PREFERENCE_FILES += ['prefs/foo.js'] |
XPCSHELL_TESTS = unit test | XPCSHELL_TESTS_MANIFESTS += [ 'test/xpcshell.ini', 'unit/xpcshell.in' ] |
Misc
Directory | test suite |
media/* | mochitest-1, mobile tests are different option. |
https://developer.mozilla.org/en-US/docs/Mozilla/QA/Automated_testing
General Errors
Failure | Platforms | Related Bugs |
MOZ_PNG_init_filt_func_neon | panda,unagi | 882907, 888009 |