forked from mirrors/gecko-dev
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:
parent
e0bbb4aa9e
commit
2fc6190633
3 changed files with 0 additions and 15 deletions
|
|
@ -50,12 +50,6 @@ def GeckoBinary(linkage='dependent', mozglue=None):
|
||||||
else:
|
else:
|
||||||
error('`mozglue` must be "program" or "library"')
|
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
|
@template
|
||||||
def GeckoProgram(name, linkage='standalone', **kwargs):
|
def GeckoProgram(name, linkage='standalone', **kwargs):
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
// Keep this file empty until bug 1423802 is fixed.
|
|
||||||
|
|
@ -7,11 +7,3 @@
|
||||||
EXPORTS.mozilla += [
|
EXPORTS.mozilla += [
|
||||||
'fallible.h',
|
'fallible.h',
|
||||||
]
|
]
|
||||||
|
|
||||||
if CONFIG['OS_TARGET'] == 'Android':
|
|
||||||
# Keep a dummy library until bug 1423802 is fixed.
|
|
||||||
Library('fallible')
|
|
||||||
|
|
||||||
SOURCES += [
|
|
||||||
'fallible.cpp',
|
|
||||||
]
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue