| OLD | NEW |
| 1 This directory contains the V8 GYP files used to generate actual project files | 1 This directory contains the V8 GYP files used to generate actual project files |
| 2 for different build systems. | 2 for different build systems. |
| 3 | 3 |
| 4 This is currently work in progress but this is expected to replace the SCons | 4 This is currently work in progress but this is expected to replace the SCons |
| 5 based build system. | 5 based build system. |
| 6 | 6 |
| 7 To use this a checkout of GYP is needed inside this directory. From the root of | 7 To use this a checkout of GYP is needed inside this directory. From the root of |
| 8 the V8 project do the following: | 8 the V8 project do the following: |
| 9 | 9 |
| 10 $ svn co http://gyp.googlecode.com/svn/trunk build/gyp | 10 $ svn co http://gyp.googlecode.com/svn/trunk build/gyp |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 | 46 |
| 47 To generate Visual Studio solution and project files on Windows: | 47 To generate Visual Studio solution and project files on Windows: |
| 48 ---------------------------------------------------------------- | 48 ---------------------------------------------------------------- |
| 49 | 49 |
| 50 On Windows an additional third party component is required. This is cygwin in | 50 On Windows an additional third party component is required. This is cygwin in |
| 51 the same version as is used by the Chromium project. This can be checked out | 51 the same version as is used by the Chromium project. This can be checked out |
| 52 from the Chromium repository. From the root of the V8 project do the following: | 52 from the Chromium repository. From the root of the V8 project do the following: |
| 53 | 53 |
| 54 > svn co http://src.chromium.org/svn/trunk/deps/third_party/cygwin@66844 third_p
arty/cygwin | 54 > svn co http://src.chromium.org/svn/trunk/deps/third_party/cygwin@66844 third_p
arty/cygwin |
| 55 | 55 |
| 56 To run GYP Python is required and it is reccomended to use the same version as | 56 To run GYP Python is required and it is recommended to use the same version as |
| 57 is used by the Chromium project. This can also be checked out from the Chromium | 57 is used by the Chromium project. This can also be checked out from the Chromium |
| 58 repository. From the root of the V8 project do the following: | 58 repository. From the root of the V8 project do the following: |
| 59 | 59 |
| 60 > svn co http://src.chromium.org/svn/trunk/tools/third_party/python_26@70627 thi
rd_party/python_26 | 60 > svn co http://src.chromium.org/svn/trunk/tools/third_party/python_26@89111 thi
rd_party/python_26 |
| 61 | 61 |
| 62 Now generate Visual Studio solution and project files for the ia32 architecture: | 62 Now generate Visual Studio solution and project files for the ia32 architecture: |
| 63 | 63 |
| 64 > third_party\python_26\python build/gyp_v8 | 64 > third_party\python_26\python build/gyp_v8 |
| 65 | 65 |
| 66 Now open build\All.sln in Visual Studio. | 66 Now open build\All.sln in Visual Studio. |
| OLD | NEW |