Bug 851770 - UnixSocket should only build when needed; r=mrbkap

--HG--
extra : rebase_source : 7d11ee8e65a71ee9d49f7915e240914e5fa0d37f
This commit is contained in:
Kyle Machulis 2013-03-19 10:22:48 -07:00
parent c7b87ef2cf
commit 268e225db7

View File

@ -16,9 +16,10 @@ if CONFIG['MOZ_B2G_RIL']:
if CONFIG['MOZ_B2G_BT']:
DIRS += ['dbus']
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
DIRS += ['netd', 'unixsocket']
elif CONFIG['OS_ARCH'] == 'Linux':
if CONFIG['MOZ_B2G_RIL'] or CONFIG['MOZ_B2G_BT']:
DIRS += ['unixsocket']
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
DIRS += ['netd']
TOOL_DIRS += ['app']