chromium: build mojo_platform_bindings before chrome
this is an attempt to prevent spurious errors due to parallel make see https://github.com/NixOS/nixpkgs/issues/35296
This commit is contained in:
parent
1865ce4abc
commit
e3cb6e7772
@ -5,7 +5,9 @@ with stdenv.lib;
|
|||||||
mkChromiumDerivation (base: rec {
|
mkChromiumDerivation (base: rec {
|
||||||
name = "chromium-browser";
|
name = "chromium-browser";
|
||||||
packageName = "chromium";
|
packageName = "chromium";
|
||||||
buildTargets = [ "mksnapshot" "chrome_sandbox" "chrome" ];
|
## mojo_platform_bindings is built ahead of chrome, because of spurious
|
||||||
|
## build errors, see https://github.com/NixOS/nixpkgs/issues/35296
|
||||||
|
buildTargets = [ "mksnapshot" "mojo_platform_bindings" "chrome_sandbox" "chrome" ];
|
||||||
|
|
||||||
outputs = ["out" "sandbox"];
|
outputs = ["out" "sandbox"];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user