chromium: Remove flag for hiDPISupport
This should now be the upstream default and there also is no more flag for GN to set it, so we'll no longer need it on our side as well. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
b43142c958
commit
5f18ccb001
4 changed files with 1 additions and 8 deletions
|
@ -28,7 +28,6 @@
|
|||
, proprietaryCodecs ? true
|
||||
, cupsSupport ? true
|
||||
, pulseSupport ? false, libpulseaudio ? null
|
||||
, hiDPISupport ? false
|
||||
|
||||
, upstream-info
|
||||
}:
|
||||
|
@ -154,7 +153,6 @@ let
|
|||
} // {
|
||||
treat_warnings_as_errors = false;
|
||||
is_clang = false;
|
||||
enable_hidpi = hiDPISupport;
|
||||
|
||||
# Google API keys, see:
|
||||
# http://www.chromium.org/developers/how-tos/api-keys
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
, proprietaryCodecs ? true
|
||||
, cupsSupport ? true
|
||||
, pulseSupport ? false, libpulseaudio ? null
|
||||
, hiDPISupport ? false
|
||||
|
||||
, upstream-info
|
||||
}:
|
||||
|
@ -179,7 +178,6 @@ let
|
|||
} // {
|
||||
werror = "";
|
||||
clang = false;
|
||||
enable_hidpi = hiDPISupport;
|
||||
|
||||
# Google API keys, see:
|
||||
# http://www.chromium.org/developers/how-tos/api-keys
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
, enableWideVine ? false
|
||||
, cupsSupport ? true
|
||||
, pulseSupport ? false
|
||||
, hiDPISupport ? false
|
||||
}:
|
||||
|
||||
let
|
||||
|
@ -28,8 +27,7 @@ let
|
|||
|
||||
mkChromiumDerivation = callPackage common {
|
||||
inherit enableSELinux enableNaCl enableHotwording gnomeSupport gnome
|
||||
gnomeKeyringSupport proprietaryCodecs cupsSupport pulseSupport
|
||||
hiDPISupport;
|
||||
gnomeKeyringSupport proprietaryCodecs cupsSupport pulseSupport;
|
||||
};
|
||||
|
||||
browser = callPackage ./browser.nix { inherit channel; };
|
||||
|
|
|
@ -12277,7 +12277,6 @@ in
|
|||
pulseSupport = config.pulseaudio or true;
|
||||
enablePepperFlash = config.chromium.enablePepperFlash or false;
|
||||
enableWideVine = config.chromium.enableWideVine or false;
|
||||
hiDPISupport = config.chromium.hiDPISupport or false;
|
||||
gnome = gnome2;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue