Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(810)

Unified Diff: tools/gn/settings.cc

Issue 180743014: Allow the bootstrap binary of GN (the one in TEMPDIR) to build and run on FreeBSD. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Submit a clean patch. Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/gn/settings.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/settings.cc
diff --git a/tools/gn/settings.cc b/tools/gn/settings.cc
index 2715829998b71202624b3ba381d9b197f9d43c22..811226d7d23d8dbdfa7ad3db95480ce135428340 100644
--- a/tools/gn/settings.cc
+++ b/tools/gn/settings.cc
@@ -37,6 +37,8 @@ Settings::Settings(const BuildSettings* build_settings,
target_os_ = MAC;
#elif defined(OS_LINUX)
target_os_ = LINUX;
+#elif defined(OS_FREEBSD)
+ target_os_ = FREEBSD;
#else
#error implement me
#endif
« no previous file with comments | « tools/gn/settings.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698