User:JoeyArmstrong/conversion: Difference between revisions
Jump to navigation
Jump to search
m (→moz.build) |
m (→moz.build) |
||
| Line 142: | Line 142: | ||
|[http://bugzilla.mozilla.org/show_bug.cgi?id=880773 SSRCS (880773)] | |[http://bugzilla.mozilla.org/show_bug.cgi?id=880773 SSRCS (880773)] | ||
|[http://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=1b15bb52a236 logic] | |[http://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=1b15bb52a236 logic] | ||
|[http://bugzilla.mozilla.org/attachment.cgi?id=761137 #1]-[https://tbpl.mozilla.org/?tree=Try&rev=d3279fefc990 try] | |[http://bugzilla.mozilla.org/attachment.cgi?id=761137 #1]-[https://tbpl.mozilla.org/?tree=Try&rev=d3279fefc990 try]-{err:b2g} | ||
| NOP | | NOP | ||
| | | | ||
Revision as of 18:31, 14 June 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' ] |