blob: 4784145e91099268484cc83945dbd964f0929683 (
plain)
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-20 21:02:41.000000000 +0200
+++ ./base/test/expectations/expectation.cc 2014-08-22 15:06:24.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
|