User:JoeyArmstrong/conversion: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (→moz.build) |
||
Line 22: | Line 22: | ||
|[http://bugzilla.mozilla.org/show_bug.cgi?id=870406 CSRCS (870406)] | |[http://bugzilla.mozilla.org/show_bug.cgi?id=870406 CSRCS (870406)] | ||
|[http://hg.mozilla.org/integration/mozilla-inbound/rev/e3faa44c33e4 logic], [http://bugzilla.mozilla.org/attachment.cgi?id=753973 #1], [https://hg.mozilla.org/mozilla-central/rev/e5b6545901b0 #2]<br>[http://tbpl.mozilla.org/?tree=Try&rev=dce8f1292bbb zz-4] [http://hg.mozilla.org/integration/mozilla-inbound/rev/bfc40b8abf4c #3], [http://hg.mozilla.org/integration/mozilla-inbound/rev/cee18252461e #4] | |[http://hg.mozilla.org/integration/mozilla-inbound/rev/e3faa44c33e4 logic], [http://bugzilla.mozilla.org/attachment.cgi?id=753973 #1], [https://hg.mozilla.org/mozilla-central/rev/e5b6545901b0 #2]<br>[http://tbpl.mozilla.org/?tree=Try&rev=dce8f1292bbb zz-4] [http://hg.mozilla.org/integration/mozilla-inbound/rev/bfc40b8abf4c #3], [http://hg.mozilla.org/integration/mozilla-inbound/rev/cee18252461e #4] | ||
| | |[https://tbpl.mozilla.org/?tree=Try&rev=ee79d606d220 build/stl] | ||
| FIN | | FIN | ||
|[https://bugzilla.mozilla.org/show_bug.cgi?id=870406#c57 cleanup] | |[https://bugzilla.mozilla.org/show_bug.cgi?id=870406#c57 cleanup] | ||
Line 199: | Line 199: | ||
http://trychooser.pub.build.mozilla.org/ | http://trychooser.pub.build.mozilla.org/ | ||
== completed == | == completed == |
Revision as of 18:59, 23 September 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/
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 | |
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 |