gecko/services/sync/xptgen
thunder@thunder-mbp.local 4b4bf77bbe Add 'log4moz', a log4net clone for Mozilla
--HG--
rename : services/sync/nsBookmarksSyncService.js => services/sync/BookmarksSyncService.js
rename : services/sync/nsIBookmarksSyncService.idl => services/sync/IBookmarksSyncService.idl
rename : services/sync/nsIBookmarksSyncService.xpt => services/sync/IBookmarksSyncService.xpt
2007-10-10 02:09:28 -07:00

14 lines
496 B
Bash
Executable File

#!/bin/bash -x
if [[ ! -d $MOZOBJDIR ]]; then
echo "MOZOBJDIR environment variable must point to a Mozilla build obj tree (with xptgen)"
exit 1
fi
if [[ ! -d $MOZSRCDIR ]]; then
echo "MOZSRCDIR environment variable must point to a Mozilla source tree"
exit 1
fi
$MOZOBJDIR/dist/bin/xpidl -m typelib -I $MOZSRCDIR/xpcom/base/ -o IBookmarksSyncService IBookmarksSyncService.idl
$MOZOBJDIR/dist/bin/xpidl -m typelib -I $MOZSRCDIR/xpcom/base/ -o ILog4MozService ILog4MozService.idl