Commit 2fc4f70e authored by Andi-Bogdan Postelnicu's avatar Andi-Bogdan Postelnicu
Browse files

Bug 1725145 - Preparation for the hybrid build env....

Bug 1725145 - Preparation for the hybrid build env. r=necko-reviewers,firefox-build-system-reviewers,valentin,glandium

Automatically generated path that adds flag `REQUIRES_UNIFIED_BUILD = True` to `moz.build`
when the module governed by the build config file is not buildable outside on the unified environment.

This needs to be done in order to have a hybrid build system that adds the possibility of combing
unified build components with ones that are built outside of the unified eco system.

Differential Revision: https://phabricator.services.mozilla.com/D122345
parent 58441a04
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -71,3 +71,5 @@ GeneratedFile(
FINAL_LIBRARY = "xul"

include("/ipc/chromium/chromium-config.mozbuild")

REQUIRES_UNIFIED_BUILD = True
+2 −0
Original line number Diff line number Diff line
@@ -57,3 +57,5 @@ if CONFIG["CC_TYPE"] == "clang-cl":
    CXXFLAGS += ["-Wno-extra-tokens"]

include("/ipc/chromium/chromium-config.mozbuild")

REQUIRES_UNIFIED_BUILD = True
+2 −0
Original line number Diff line number Diff line
@@ -81,3 +81,5 @@ if CONFIG["CC_TYPE"] == "clang-cl":
include("/ipc/chromium/chromium-config.mozbuild")

FINAL_LIBRARY = "xul"

REQUIRES_UNIFIED_BUILD = True
+2 −0
Original line number Diff line number Diff line
@@ -22,3 +22,5 @@ LOCAL_INCLUDES += [
include("/ipc/chromium/chromium-config.mozbuild")

FINAL_LIBRARY = "xul"

REQUIRES_UNIFIED_BUILD = True
+2 −0
Original line number Diff line number Diff line
@@ -54,3 +54,5 @@ DisableStlWrapping()

with Files("**"):
    BUG_COMPONENT = ("Firefox", "Launcher Process")

REQUIRES_UNIFIED_BUILD = True
Loading