Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
compare/ | 22-Nov-2023 | - | 24 | 22 | ||
js/ | 22-Nov-2023 | - | 368 | 309 | ||
DrawingMethods.cpp | D | 22-Nov-2023 | 5.2 KiB | 173 | 133 | |
DrawingMethods.h | D | 22-Nov-2023 | 1.7 KiB | 58 | 29 | |
Global.cpp | D | 22-Nov-2023 | 8 KiB | 246 | 149 | |
Global.h | D | 22-Nov-2023 | 2.1 KiB | 85 | 49 | |
JsContext.cpp | D | 22-Nov-2023 | 4.6 KiB | 139 | 64 | |
JsContext.h | D | 22-Nov-2023 | 1.5 KiB | 64 | 26 | |
Path2D.cpp | D | 22-Nov-2023 | 1.9 KiB | 56 | 28 | |
Path2D.h | D | 22-Nov-2023 | 957 | 52 | 26 | |
Path2DBuilder.cpp | D | 22-Nov-2023 | 8.7 KiB | 262 | 212 | |
Path2DBuilder.h | D | 22-Nov-2023 | 1.6 KiB | 54 | 30 | |
README | D | 22-Nov-2023 | 560 | 17 | 12 | |
SkV8Example.cpp | D | 22-Nov-2023 | 6.2 KiB | 237 | 183 | |
SkV8Example.h | D | 22-Nov-2023 | 1,014 | 54 | 33 |
README
1Build Instructions 2================== 3 4V8 gyp is not quite standard and Chromium uses a Python script 5to work around that, for now we have some manual steps to do 6before you can compile and run this sample: 7 81. Uncomment out the v8 dep in DEPS and re-run gclient sync. 92. Run 'make dependencies' in third_pary/externals/v8. 103. Run 'make native' in third_pary/externals/v8. 114. Uncomment SkV8Example in gyp/everything.gyp. 125. Run 'ninja -C out/Debug SkV8Example' 136. Run the sample as: 14 ./out/Debug/SkV8Example --infile experimental/SkV8Example/js/speed.js 15 16 17