From 137c5ce4e6a179b9e2655a86f7a599d8184b3014 Mon Sep 17 00:00:00 2001 From: serge-sans-paille Date: Sun, 19 Feb 2023 15:33:55 +0000 Subject: [PATCH] Bug 1817313 - Make startupcache/ buildable outside of a unified build environment r=andi Differential Revision: https://phabricator.services.mozilla.com/D170124 --- startupcache/StartupCacheInfo.cpp | 2 ++ startupcache/moz.build | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/startupcache/StartupCacheInfo.cpp b/startupcache/StartupCacheInfo.cpp index 461948d9c2f2..184fa1f42f92 100644 --- a/startupcache/StartupCacheInfo.cpp +++ b/startupcache/StartupCacheInfo.cpp @@ -3,10 +3,12 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#include "StartupCache.h" #include "StartupCacheInfo.h" #include "mozilla/Components.h" #include "mozilla/RefPtr.h" +#include "mozilla/StaticPtr.h" using namespace mozilla; using namespace mozilla::scache; diff --git a/startupcache/moz.build b/startupcache/moz.build index 4ee94be455ee..a05aebd47299 100644 --- a/startupcache/moz.build +++ b/startupcache/moz.build @@ -32,5 +32,3 @@ XPIDL_SOURCES += [ ] FINAL_LIBRARY = "xul" - -REQUIRES_UNIFIED_BUILD = True