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

Unified Diff: src/mksnapshot.cc

Issue 304153016: Use full include paths everywhere (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
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
« no previous file with comments | « src/misc-intrinsics.h ('k') | src/msan.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mksnapshot.cc
diff --git a/src/mksnapshot.cc b/src/mksnapshot.cc
index e04d8dada95eb096ec912b641a964fda32c365fc..d4262c4cea1351af3c3f003487d1daa0f079810d 100644
--- a/src/mksnapshot.cc
+++ b/src/mksnapshot.cc
@@ -9,15 +9,15 @@
#endif
#include <signal.h>
-#include "v8.h"
+#include "src/v8.h"
-#include "assembler.h"
-#include "bootstrapper.h"
-#include "flags.h"
-#include "natives.h"
-#include "platform.h"
-#include "serialize.h"
-#include "list.h"
+#include "src/assembler.h"
+#include "src/bootstrapper.h"
+#include "src/flags.h"
+#include "src/natives.h"
+#include "src/platform.h"
+#include "src/serialize.h"
+#include "src/list.h"
using namespace v8;
@@ -86,9 +86,9 @@ class SnapshotWriter {
private:
void WriteFilePrefix() const {
fprintf(fp_, "// Autogenerated snapshot file. Do not edit.\n\n");
- fprintf(fp_, "#include \"v8.h\"\n");
- fprintf(fp_, "#include \"platform.h\"\n\n");
- fprintf(fp_, "#include \"snapshot.h\"\n\n");
+ fprintf(fp_, "#include \"src/v8.h\"\n");
+ fprintf(fp_, "#include \"src/platform.h\"\n\n");
+ fprintf(fp_, "#include \"src/snapshot.h\"\n\n");
fprintf(fp_, "namespace v8 {\n");
fprintf(fp_, "namespace internal {\n\n");
}
« no previous file with comments | « src/misc-intrinsics.h ('k') | src/msan.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698