blob: b2b614088efb13569ccccc5714f5bd754bda7eb5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- ./base/test/expectations/expectation.cc.orig 2014-08-12 21:01:28.000000000 +0200
+++ ./base/test/expectations/expectation.cc 2014-08-13 09:56:56.000000000 +0200
@@ -60,6 +60,7 @@
variant != "64") {
return false;
}
+ } else if (name == "FreeBSD") {
} else if (name == "ChromeOS") {
// TODO(rsesek): Figure out what ChromeOS needs.
} else if (name == "iOS") {
@@ -125,6 +126,8 @@
platform.variant = "32";
else if (arch == "x86_64")
platform.variant = "64";
+#elif defined(OS_FREEBSD)
+ platform.name = "FreeBSD";
#else
NOTREACHED();
#endif
|