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_ |