| OLD | NEW |
| 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 |
| 8 // commit test |
| 9 |
| 7 #if defined(USING_V8_SHARED) && !defined(V8_SHARED) | 10 #if defined(USING_V8_SHARED) && !defined(V8_SHARED) |
| 8 #define V8_SHARED | 11 #define V8_SHARED |
| 9 #endif | 12 #endif |
| 10 | 13 |
| 11 #include <errno.h> | 14 #include <errno.h> |
| 12 #include <stdlib.h> | 15 #include <stdlib.h> |
| 13 #include <string.h> | 16 #include <string.h> |
| 14 #include <sys/stat.h> | 17 #include <sys/stat.h> |
| 15 | 18 |
| 16 #ifdef V8_SHARED | 19 #ifdef V8_SHARED |
| (...skipping 2459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2476 } | 2479 } |
| 2477 | 2480 |
| 2478 } // namespace v8 | 2481 } // namespace v8 |
| 2479 | 2482 |
| 2480 | 2483 |
| 2481 #ifndef GOOGLE3 | 2484 #ifndef GOOGLE3 |
| 2482 int main(int argc, char* argv[]) { | 2485 int main(int argc, char* argv[]) { |
| 2483 return v8::Shell::Main(argc, argv); | 2486 return v8::Shell::Main(argc, argv); |
| 2484 } | 2487 } |
| 2485 #endif | 2488 #endif |
| OLD | NEW |