User:JoeyArmstrong/conversion: Difference between revisions
Jump to navigation
Jump to search
m (→moz.build) |
m (→moz.build) |
||
| Line 135: | Line 135: | ||
|- | |- | ||
|[http://bugzilla.mozilla.org/show_bug.cgi?id=872086 SIMPLE_PROGRAMS (872086)] | |[http://bugzilla.mozilla.org/show_bug.cgi?id=872086 SIMPLE_PROGRAMS (872086)] | ||
|[http://hg.mozilla.org/mozilla-central/rev/2c51b6730bbc logic, [https://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=fa6b60d827d4 #1], [http://tbpl.mozilla.org/?tree=Try&rev=cd0c9d1d6f0e #2] | |[http://hg.mozilla.org/mozilla-central/rev/2c51b6730bbc logic], [https://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=fa6b60d827d4 #1], [http://tbpl.mozilla.org/?tree=Try&rev=cd0c9d1d6f0e #2] | ||
| | | | ||
| NOP | | NOP | ||
Revision as of 13:36, 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' ] |