зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1882669 - Enforce that one of MOZ_ANDROID_HISTORY or MOZ_PLACES must be set. r=mak
Differential Revision: https://phabricator.services.mozilla.com/D203070
This commit is contained in:
Родитель
2d7214c6f8
Коммит
bde5d12149
|
@ -988,6 +988,8 @@ project_flag(
|
|||
def check_places_and_android_history(places, android_history):
|
||||
if places and android_history:
|
||||
die("Cannot use MOZ_ANDROID_HISTORY alongside MOZ_PLACES.")
|
||||
if not places and not android_history:
|
||||
die("One of MOZ_ANDROID_HISTORY or MOZ_PLACES must be set.")
|
||||
|
||||
|
||||
option(
|
||||
|
|
Загрузка…
Ссылка в новой задаче