1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
--- build/config/BUILDCONFIG.gn.orig 2017-06-05 19:03:01 UTC
+++ build/config/BUILDCONFIG.gn
@@ -131,12 +131,13 @@ declare_args() {
is_official_build = false
# Whether we're a traditional desktop unix.
- is_desktop_linux = current_os == "linux"
+ is_desktop_linux = current_os == "linux" || current_os == "bsd"
# Set to true when compiling with the Clang compiler. Typically this is used
# to configure warnings.
is_clang = current_os == "mac" || current_os == "ios" ||
- current_os == "linux" || current_os == "chromeos"
+ current_os == "linux" || current_os == "chromeos" ||
+ current_os == "bsd"
# Allows the path to a custom target toolchain to be injected as a single
# argument, and set as the default toolchain.
@@ -185,8 +186,8 @@ if (host_toolchain == "") {
# TODO(dpranke): Add some sort of assert here that verifies that
# no toolchain omitted host_toolchain from its toolchain_args().
- if (host_os == "linux") {
- if (target_os != "linux") {
+ if (host_os == "linux" || host_os == "bsd") {
+ if (target_os != "linux" || target_os != "bsd") {
# TODO(dpranke) - is_clang normally applies only to the target
# build, and there is no way to indicate that you want to override
# it for both the target build *and* the host build. Do we need to
@@ -222,7 +223,7 @@ if (target_os == "android") {
} else {
_default_toolchain = "//build/toolchain/android:android_$target_cpu"
}
-} else if (target_os == "chromeos" || target_os == "linux") {
+} else if (target_os == "chromeos" || target_os == "linux" || target_os == "bsd") {
# See comments in build/toolchain/cros/BUILD.gn about board compiles.
if (is_clang) {
_default_toolchain = "//build/toolchain/linux:clang_$target_cpu"
@@ -342,8 +343,17 @@ if (current_os == "win" || current_os == "winrt_81" ||
is_nacl = false
is_posix = true
is_win = false
+} else if (current_os == "bsd") {
+ is_android = false
+ is_chromeos = false
+ is_ios = false
+ is_linux = false
+ is_bsd = true
+ is_mac = false
+ is_nacl = false
+ is_posix = true
+ is_win = false
}
-
# =============================================================================
# SOURCES FILTERS
# =============================================================================
@@ -412,7 +422,7 @@ if (!is_ios) {
if (!is_mac && !is_ios) {
sources_assignment_filter += [ "*.mm" ]
}
-if (!is_linux) {
+if (!is_linux && !is_bsd) {
sources_assignment_filter += [
"*_linux.h",
"*_linux.cc",
|