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 , proprietaryCodecs ? true
, cupsSupport ? true , cupsSupport ? true
, pulseSupport ? false, libpulseaudio ? null , pulseSupport ? false, libpulseaudio ? null
, hiDPISupport ? false
, upstream-info , upstream-info
}: }:
@ -154,7 +153,6 @@ let
} // { } // {
treat_warnings_as_errors = false; treat_warnings_as_errors = false;
is_clang = false; is_clang = false;
enable_hidpi = hiDPISupport;
# Google API keys, see: # Google API keys, see:
# http://www.chromium.org/developers/how-tos/api-keys # http://www.chromium.org/developers/how-tos/api-keys

View file

@ -28,7 +28,6 @@
, proprietaryCodecs ? true , proprietaryCodecs ? true
, cupsSupport ? true , cupsSupport ? true
, pulseSupport ? false, libpulseaudio ? null , pulseSupport ? false, libpulseaudio ? null
, hiDPISupport ? false
, upstream-info , upstream-info
}: }:
@ -179,7 +178,6 @@ let
} // { } // {
werror = ""; werror = "";
clang = false; clang = false;
enable_hidpi = hiDPISupport;
# Google API keys, see: # Google API keys, see:
# http://www.chromium.org/developers/how-tos/api-keys # http://www.chromium.org/developers/how-tos/api-keys

View file

@ -12,7 +12,6 @@
, enableWideVine ? false , enableWideVine ? false
, cupsSupport ? true , cupsSupport ? true
, pulseSupport ? false , pulseSupport ? false
, hiDPISupport ? false
}: }:
let let
@ -28,8 +27,7 @@ let
mkChromiumDerivation = callPackage common { mkChromiumDerivation = callPackage common {
inherit enableSELinux enableNaCl enableHotwording gnomeSupport gnome inherit enableSELinux enableNaCl enableHotwording gnomeSupport gnome
gnomeKeyringSupport proprietaryCodecs cupsSupport pulseSupport gnomeKeyringSupport proprietaryCodecs cupsSupport pulseSupport;
hiDPISupport;
}; };
browser = callPackage ./browser.nix { inherit channel; }; browser = callPackage ./browser.nix { inherit channel; };

View file

@ -12277,7 +12277,6 @@ in
pulseSupport = config.pulseaudio or true; pulseSupport = config.pulseaudio or true;
enablePepperFlash = config.chromium.enablePepperFlash or false; enablePepperFlash = config.chromium.enablePepperFlash or false;
enableWideVine = config.chromium.enableWideVine or false; enableWideVine = config.chromium.enableWideVine or false;
hiDPISupport = config.chromium.hiDPISupport or false;
gnome = gnome2; gnome = gnome2;
}; };