diff options
Diffstat (limited to 'netwerk/base/moz.build')
-rw-r--r-- | netwerk/base/moz.build | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/netwerk/base/moz.build b/netwerk/base/moz.build index 3ec17b2b2a..1659299f7b 100644 --- a/netwerk/base/moz.build +++ b/netwerk/base/moz.build @@ -257,6 +257,10 @@ if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows': 'nsURLHelperWin.cpp', 'ShutdownLayer.cpp', ] +elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa': + SOURCES += [ + 'nsURLHelperOSX.cpp', + ] else: SOURCES += [ 'nsURLHelperUnix.cpp', @@ -268,6 +272,11 @@ if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows': 'NetworkInfoServiceWindows.cpp', 'nsNetworkInfoService.cpp', ] +elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa': + SOURCES += [ + 'NetworkInfoServiceCocoa.cpp', + 'nsNetworkInfoService.cpp', + ] elif CONFIG['OS_ARCH'] == 'Linux': SOURCES += [ 'NetworkInfoServiceLinux.cpp', |