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

Unified Diff: tools/gn/source_file_type.cc

Issue 603143002: gn: Fix more build issues on Win (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: += instead of = Created 6 years, 3 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 | « third_party/protobuf/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/source_file_type.cc
diff --git a/tools/gn/source_file_type.cc b/tools/gn/source_file_type.cc
index b58ecb372f326961a037da774d0d02329ae8a447..35c87098290b556f75bd601337f55a818824b264 100644
--- a/tools/gn/source_file_type.cc
+++ b/tools/gn/source_file_type.cc
@@ -21,7 +21,7 @@ SourceFileType GetSourceFileType(const SourceFile& file) {
return SOURCE_MM;
if (extension == "rc")
return SOURCE_RC;
- if (extension == "S" || extension == "s")
+ if (extension == "S" || extension == "s" || extension == "asm")
return SOURCE_S;
if (extension == "o" || extension == "obj")
return SOURCE_O;
« no previous file with comments | « third_party/protobuf/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698