mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
4b4bf77bbe
--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
14 lines
496 B
Bash
Executable File
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
|