Bug 1319854 - Unused resource://gre/modules/osfile/osfile_{unix,win}_{back,front}.jsm files, r=Yoric.

This commit is contained in:
Florian Quèze 2016-11-28 12:29:30 +01:00
parent a88e9af85a
commit 5bf00d6bcb

View File

@ -10,13 +10,20 @@ EXTRA_JS_MODULES.osfile += [
'osfile_native.jsm',
'osfile_shared_allthreads.jsm',
'osfile_shared_front.jsm',
'osfile_unix_allthreads.jsm',
'osfile_unix_back.jsm',
'osfile_unix_front.jsm',
'osfile_win_allthreads.jsm',
'osfile_win_back.jsm',
'osfile_win_front.jsm',
'ospath.jsm',
'ospath_unix.jsm',
'ospath_win.jsm',
]
if CONFIG['OS_TARGET'] == 'WINNT':
EXTRA_JS_MODULES.osfile += [
'osfile_win_allthreads.jsm',
'osfile_win_back.jsm',
'osfile_win_front.jsm',
'ospath_win.jsm',
]
else:
EXTRA_JS_MODULES.osfile += [
'osfile_unix_allthreads.jsm',
'osfile_unix_back.jsm',
'osfile_unix_front.jsm',
'ospath_unix.jsm',
]