User:JoeyArmstrong/conversion: Difference between revisions
Jump to navigation
Jump to search
| Line 22: | Line 22: | ||
|[http://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=73ef965a7b66 logic], [http://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=c936da8dd34a #1] | |[http://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=73ef965a7b66 logic], [http://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=c936da8dd34a #1] | ||
|[http://tbpl.mozilla.org/?tree=Try&rev=5e0cb3bcf551 #2]-try [http://tbpl.mozilla.org/?tree=Try&rev=5e0cb3bcf551 osx 10.{6,7}] | |[http://tbpl.mozilla.org/?tree=Try&rev=5e0cb3bcf551 #2]-try [http://tbpl.mozilla.org/?tree=Try&rev=5e0cb3bcf551 osx 10.{6,7}] | ||
| (patch waiting review) | |||
| | | | ||
|- | |- | ||
| <strike>[http://bugzilla.mozilla.org/show_bug.cgi?id=864774 CPPSRCS]</strike> | | <strike>[http://bugzilla.mozilla.org/show_bug.cgi?id=864774 CPPSRCS]</strike> | ||
Revision as of 15:38, 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' ] |