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

Unified Diff: runtime/vm/globals.h

Issue 2522943004: Set the default value for use_corelib_source_files to true on windows as we do not have the source … (Closed)
Patch Set: Created 4 years, 1 month 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 | « runtime/vm/bootstrap.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/globals.h
diff --git a/runtime/vm/globals.h b/runtime/vm/globals.h
index e3045edc298e99fa21b24f68a21070b3536fd1b3..af78f8d05639e96a94a219f48d276e4c2ab4d7d5 100644
--- a/runtime/vm/globals.h
+++ b/runtime/vm/globals.h
@@ -136,6 +136,13 @@ static const uword kZapUninitializedWord = 0xabababababababab;
#endif // !defined(TARGET_OS_WINDOWS))
+// Default value for flag --use-corelib-source-files.
rmacnak 2016/11/23 19:08:45 Why not keep this local to bootstrap.cc?
+#if defined(TARGET_OS_WINDOWS)
+static const bool kDefaultCorelibSourceFlag = true;
+#else
+static const bool kDefaultCorelibSourceFlag = false;
+#endif // defined(TARGET_OS_WINDOWS)
+
} // namespace dart
#endif // RUNTIME_VM_GLOBALS_H_
« no previous file with comments | « runtime/vm/bootstrap.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698