Bug 1683553 - Make `hal` buildable outside of `unified-build` environment. r=gsvelto

Differential Revision: https://phabricator.services.mozilla.com/D100210
This commit is contained in:
Andi-Bogdan Postelnicu 2021-01-04 14:20:19 +00:00
Родитель 7b246e293f
Коммит d5cca8c6ff
3 изменённых файлов: 3 добавлений и 2 удалений

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

@ -105,3 +105,4 @@ gfx/wgpu/
gfx/wgpu_bindings/
gfx/wr/
gfx/ycbcr/
hal/

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

@ -16,7 +16,7 @@ void GetCurrentScreenConfiguration(
fallback::GetCurrentScreenConfiguration(aScreenConfiguration);
}
bool LockScreenOrientation(const ScreenOrientation& aOrientation) {
bool LockScreenOrientation(const hal::ScreenOrientation& aOrientation) {
return false;
}

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

@ -23,7 +23,7 @@ inline void GetCurrentScreenConfiguration(
}
int32_t colorDepth, pixelDepth, x, y, w, h;
ScreenOrientation orientation;
hal::ScreenOrientation orientation;
nsCOMPtr<nsIScreen> screen;
screenMgr->GetPrimaryScreen(getter_AddRefs(screen));