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:
aszlig 2016-10-29 04:01:04 +02:00
parent b43142c958
commit 5f18ccb001
No known key found for this signature in database
GPG key ID: 1DE8E48E57DB5436
4 changed files with 1 additions and 8 deletions

View file

@ -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

View file

@ -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

View file

@ -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; };

View file

@ -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;
};