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:
Mike Hommey 2024-03-01 19:30:57 +00:00
Родитель 2d7214c6f8
Коммит bde5d12149
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -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(