summaryrefslogtreecommitdiff
path: root/www/chromium/files/patch-build_config_BUILDCONFIG.gn
diff options
context:
space:
mode:
Diffstat (limited to 'www/chromium/files/patch-build_config_BUILDCONFIG.gn')
-rw-r--r--www/chromium/files/patch-build_config_BUILDCONFIG.gn11
1 files changed, 5 insertions, 6 deletions
diff --git a/www/chromium/files/patch-build_config_BUILDCONFIG.gn b/www/chromium/files/patch-build_config_BUILDCONFIG.gn
index 57897b6ae110..e38336dcdf13 100644
--- a/www/chromium/files/patch-build_config_BUILDCONFIG.gn
+++ b/www/chromium/files/patch-build_config_BUILDCONFIG.gn
@@ -1,4 +1,4 @@
---- build/config/BUILDCONFIG.gn.orig 2020-09-21 18:39:01 UTC
+--- build/config/BUILDCONFIG.gn.orig 2020-11-13 06:36:34 UTC
+++ build/config/BUILDCONFIG.gn
@@ -131,10 +131,10 @@ declare_args() {
is_official_build = false
@@ -33,17 +33,16 @@
# See comments in build/toolchain/cros/BUILD.gn about board compiles.
if (is_clang) {
_default_toolchain = "//build/toolchain/linux:clang_$target_cpu"
-@@ -285,10 +285,12 @@ if (custom_toolchain != "") {
+@@ -285,10 +285,11 @@ if (custom_toolchain != "") {
# current_os value directly.
is_android = current_os == "android"
-+is_bsd = current_os == "freebsd" || current_os == "netbsd" || current_os == "openbsd"
++is_bsd = current_os == "freebsd"
is_chromeos = current_os == "chromeos"
-+is_freebsd = current_os == "freebsd"
is_fuchsia = current_os == "fuchsia"
is_ios = current_os == "ios"
--is_linux = current_os == "chromeos" || current_os == "linux"
-+is_linux = current_os == "chromeos" || current_os == "linux" || current_os == "freebsd"
+-is_linux = current_os == "linux"
++is_linux = current_os == "linux" || current_os == "freebsd"
is_mac = current_os == "mac"
is_nacl = current_os == "nacl"
is_win = current_os == "win" || current_os == "winuwp"