Bug 1423802 - Remove the dummy fallible library. r=nalexander

Bug 1423803 was attempting to remove the fallible library but didn't do
so on Android because of this bug. We can now fully retire it.

--HG--
extra : rebase_source : de38872a08d24768eadfbe81652cfcd6aa7aa041
This commit is contained in:
Mike Hommey 2017-12-07 12:16:50 +09:00
parent e0bbb4aa9e
commit 2fc6190633
3 changed files with 0 additions and 15 deletions

View file

@ -50,12 +50,6 @@ def GeckoBinary(linkage='dependent', mozglue=None):
else:
error('`mozglue` must be "program" or "library"')
if CONFIG['MOZ_WIDGET_TOOLKIT'] and CONFIG['OS_TARGET'] == 'Android':
# Keep a dummy library until bug 1423802 is fixed.
USE_LIBS += [
'fallible',
]
@template
def GeckoProgram(name, linkage='standalone', **kwargs):

View file

@ -1 +0,0 @@
// Keep this file empty until bug 1423802 is fixed.

View file

@ -7,11 +7,3 @@
EXPORTS.mozilla += [
'fallible.h',
]
if CONFIG['OS_TARGET'] == 'Android':
# Keep a dummy library until bug 1423802 is fixed.
Library('fallible')
SOURCES += [
'fallible.cpp',
]