diff options
author | Rene Ladan <rene@FreeBSD.org> | 2018-02-20 18:51:06 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2018-02-20 18:51:06 +0000 |
commit | 2312775f8ebc90aa20f4e45bd252816e24314844 (patch) | |
tree | 34414a0b8d8a904cd0eb4023b41603862897f7c9 /www/chromium/files/patch-build_config_ui.gni | |
parent | Update to 0.9704. (diff) |
www/chromium: update to 63.0.3239.132
Submitted by: cpm
Obtained from: https://github.com/cpu82/freebsd-chromium
MFH: 2018Q1
Security: https://vuxml.freebsd.org/freebsd/e264e74e-ffe0-11e7-8b91-e8e0b747a45a.html
Security: https://vuxml.freebsd.org/freebsd/1d951e85-ffdb-11e7-8b91-e8e0b747a45a.html
Security: https://vuxml.freebsd.org/freebsd/82894193-ffd4-11e7-8b91-e8e0b747a45a.html
Security: https://vuxml.freebsd.org/freebsd/f8e72cd4-c66a-11e7-bb17-e8e0b747a45a.html
Security: https://vuxml.freebsd.org/freebsd/3cd46257-bbc5-11e7-a3bc-e8e0b747a45a.html
Security: https://vuxml.freebsd.org/freebsd/a692bffe-b6ad-11e7-a1c2-e8e0b747a45a.html
Diffstat (limited to 'www/chromium/files/patch-build_config_ui.gni')
-rw-r--r-- | www/chromium/files/patch-build_config_ui.gni | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/www/chromium/files/patch-build_config_ui.gni b/www/chromium/files/patch-build_config_ui.gni deleted file mode 100644 index c3816df22883..000000000000 --- a/www/chromium/files/patch-build_config_ui.gni +++ /dev/null @@ -1,32 +0,0 @@ ---- build/config/ui.gni.orig 2017-06-05 19:03:01 UTC -+++ build/config/ui.gni -@@ -31,10 +31,10 @@ declare_args() { - - # Indicates if Aura is enabled. Aura is a low-level windowing library, sort - # of a replacement for GDI or GTK. -- use_aura = is_win || is_linux -+ use_aura = is_win || is_linux || is_bsd - - # Whether we should use glib, a low level C utility library. -- use_glib = is_linux -+ use_glib = is_linux || is_bsd - } - - declare_args() { -@@ -48,14 +48,14 @@ declare_args() { - # These variables depend on other variables and can't be set externally. - - # Indicates if the UI toolkit depends on X11. --use_x11 = is_linux && !use_ozone -+use_x11 = (is_linux || is_bsd) && !use_ozone - - # Turn off glib if Ozone is enabled. - if (use_ozone) { - use_glib = false - } - --if (is_linux && !use_ozone) { -+if ((is_linux || is_bsd) && !use_ozone) { - use_cairo = true - use_pango = true - } else { |