User:JoeyArmstrong/conversion: Difference between revisions
Jump to navigation
Jump to search
m (→moz.build) |
|||
| Line 22: | Line 22: | ||
|[http://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=73ef965a7b66 logic], [http://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=c936da8dd34a #1], [https://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=932964100cd2 #2], [http://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=de57cc8ba195 #3] | |[http://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=73ef965a7b66 logic], [http://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=c936da8dd34a #1], [https://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=932964100cd2 #2], [http://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=de57cc8ba195 #3] | ||
|[http://tbpl.mozilla.org/?tree=Try&rev=3352acc891e0 #4]-try-build | |[http://tbpl.mozilla.org/?tree=Try&rev=3352acc891e0 #4]-try-build | ||
[http://bugzilla.mozilla.org/attachment.cgi?id=770978 cleanup] | [http://bugzilla.mozilla.org/attachment.cgi?id=770978 cleanup]-inbound | ||
|FIN | |FIN | ||
| | | | ||
Revision as of 15:46, 8 July 2013
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/
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 |