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

Side by Side Diff: src/d8.cc

Issue 743533003: Revert "Forward declaration for Isolate / Platform in libplatform.h." and "Fixes d8 on windows foll… (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 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 unified diff | Download patch
« no previous file with comments | « samples/shell.cc ('k') | test/unittests/run-all-unittests.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 5
6 // Defined when linking against shared lib on Windows. 6 // Defined when linking against shared lib on Windows.
7 #if defined(USING_V8_SHARED) && !defined(V8_SHARED) 7 #if defined(USING_V8_SHARED) && !defined(V8_SHARED)
8 #define V8_SHARED 8 #define V8_SHARED
9 #endif 9 #endif
10 10
(...skipping 22 matching lines...) Expand all
33 #include "src/gdb-jit.h" 33 #include "src/gdb-jit.h"
34 #endif 34 #endif
35 35
36 #ifdef ENABLE_VTUNE_JIT_INTERFACE 36 #ifdef ENABLE_VTUNE_JIT_INTERFACE
37 #include "src/third_party/vtune/v8-vtune.h" 37 #include "src/third_party/vtune/v8-vtune.h"
38 #endif 38 #endif
39 39
40 #include "src/d8.h" 40 #include "src/d8.h"
41 41
42 #include "include/libplatform/libplatform.h" 42 #include "include/libplatform/libplatform.h"
43 #include "include/v8-platform.h"
44
45 #ifndef V8_SHARED 43 #ifndef V8_SHARED
46 #include "src/api.h" 44 #include "src/api.h"
47 #include "src/base/cpu.h" 45 #include "src/base/cpu.h"
48 #include "src/base/logging.h" 46 #include "src/base/logging.h"
49 #include "src/base/platform/platform.h" 47 #include "src/base/platform/platform.h"
50 #include "src/base/sys-info.h" 48 #include "src/base/sys-info.h"
51 #include "src/basic-block-profiler.h" 49 #include "src/basic-block-profiler.h"
52 #include "src/d8-debug.h" 50 #include "src/d8-debug.h"
53 #include "src/debug.h" 51 #include "src/debug.h"
54 #include "src/natives.h" 52 #include "src/natives.h"
(...skipping 1711 matching lines...) Expand 10 before | Expand all | Expand 10 after
1766 } 1764 }
1767 1765
1768 } // namespace v8 1766 } // namespace v8
1769 1767
1770 1768
1771 #ifndef GOOGLE3 1769 #ifndef GOOGLE3
1772 int main(int argc, char* argv[]) { 1770 int main(int argc, char* argv[]) {
1773 return v8::Shell::Main(argc, argv); 1771 return v8::Shell::Main(argc, argv);
1774 } 1772 }
1775 #endif 1773 #endif
OLDNEW
« no previous file with comments | « samples/shell.cc ('k') | test/unittests/run-all-unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698