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 {
|
||||
name = "chromium-browser";
|
||||
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"];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user