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

Unified Diff: tools/gn/args.cc

Issue 275703003: Make GN Android build link executables (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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
Index: tools/gn/args.cc
diff --git a/tools/gn/args.cc b/tools/gn/args.cc
index db7b84dd94bbdad105431b0994aa41625b83fef4..846b8b8a4c6d2428da495fd071a4b08ee71e3f67 100644
--- a/tools/gn/args.cc
+++ b/tools/gn/args.cc
@@ -222,6 +222,8 @@ void Args::SetSystemVarsLocked(Scope* dest) const {
os = "mac";
#elif defined(OS_LINUX)
os = "linux";
+#elif defined(OS_ANDROID)
+ os = "android";
#else
#error Unknown OS type.
#endif

Powered by Google App Engine
This is Rietveld 408576698