commit-bot@chromium.org | b163984 | 2014-01-08 15:14:09 +0000 | [diff] [blame] | 1 | Build Instructions |
| 2 | ================== |
| 3 | |
| 4 | V8 gyp is not quite standard and Chromium uses a Python script |
| 5 | to work around that, for now we have some manual steps to do |
| 6 | before you can compile and run this sample: |
| 7 | |
| 8 | 1. Uncomment out the v8 dep in DEPS and re-run gclient sync. |
| 9 | 2. Run 'make dependencies' in third_pary/externals/v8. |
| 10 | 3. Run 'make native' in third_pary/externals/v8. |
| 11 | 4. Uncomment SkV8Example in gyp/everything.gyp. |
commit-bot@chromium.org | 310ec8e | 2014-02-13 15:30:06 +0000 | [diff] [blame] | 12 | 5. Run 'ninja -C out/Debug SkV8Example' |
commit-bot@chromium.org | b163984 | 2014-01-08 15:14:09 +0000 | [diff] [blame] | 13 | 6. Run the sample as: |
robertphillips | 59b3815 | 2014-10-24 20:02:31 -0700 | [diff] [blame^] | 14 | ./out/Debug/SkV8Example --infile experimental/SkV8Example/js/speed.js |
commit-bot@chromium.org | b163984 | 2014-01-08 15:14:09 +0000 | [diff] [blame] | 15 | |
| 16 | |