| OLD | NEW |
| 1 # GYP file to build a V8 sample. | 1 # GYP file to build a V8 sample. |
| 2 { | 2 { |
| 3 'targets': [ | 3 'targets': [ |
| 4 { | 4 { |
| 5 'target_name': 'SkV8Example', | 5 'target_name': 'SkV8Example', |
| 6 'type': 'executable', | 6 'type': 'executable', |
| 7 'mac_bundle' : 1, | 7 'mac_bundle' : 1, |
| 8 'include_dirs' : [ | 8 'include_dirs' : [ |
| 9 '../tools/flags', | 9 '../tools/flags', |
| 10 '../third_party/externals/v8/include', | 10 '../third_party/externals/v8/include', |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 # 'd:/src/v8/build/Debug/lib/v8_base.ia32.lib', | 31 # 'd:/src/v8/build/Debug/lib/v8_base.ia32.lib', |
| 32 # 'd:/src/v8/build/Debug/lib/v8_snapshot.lib', | 32 # 'd:/src/v8/build/Debug/lib/v8_snapshot.lib', |
| 33 # 'd:/src/v8/build/Debug/lib/icuuc.lib', | 33 # 'd:/src/v8/build/Debug/lib/icuuc.lib', |
| 34 # 'd:/src/v8/build/Debug/lib/icui18n.lib', | 34 # 'd:/src/v8/build/Debug/lib/icui18n.lib', |
| 35 # 'Ws2_32.lib', | 35 # 'Ws2_32.lib', |
| 36 # 'Winmm.lib', | 36 # 'Winmm.lib', |
| 37 | 37 |
| 38 '-lpthread', | 38 '-lpthread', |
| 39 '-lrt', | 39 '-lrt', |
| 40 '../third_party/externals/v8/out/native/obj.target/tools/gyp/libv8_ba
se.x64.a', | 40 '../../third_party/externals/v8/out/native/obj.target/tools/gyp/libv8
_base.x64.a', |
| 41 '../third_party/externals/v8/out/native/obj.target/tools/gyp/libv8_sn
apshot.a', | 41 '../../third_party/externals/v8/out/native/obj.target/tools/gyp/libv8
_snapshot.a', |
| 42 '../third_party/externals/v8/out/native/obj.target/third_party/icu/li
bicudata.a', | 42 '../../third_party/externals/v8/out/native/obj.target/third_party/icu
/libicudata.a', |
| 43 '../third_party/externals/v8/out/native/obj.target/third_party/icu/li
bicui18n.a', | 43 '../../third_party/externals/v8/out/native/obj.target/third_party/icu
/libicui18n.a', |
| 44 '../third_party/externals/v8/out/native/obj.target/third_party/icu/li
bicuuc.a', | 44 '../../third_party/externals/v8/out/native/obj.target/third_party/icu
/libicuuc.a', |
| 45 '../third_party/externals/v8/out/native/obj.target/icudata/third_part
y/icu/linux/icudt46l_dat.o', | 45 '../../third_party/externals/v8/out/native/obj.target/icudata/third_p
arty/icu/linux/icudt46l_dat.o', |
| 46 ], | 46 ], |
| 47 }, | 47 }, |
| 48 'conditions' : [ | 48 'conditions' : [ |
| 49 [ 'skia_gpu == 1', { | 49 [ 'skia_gpu == 1', { |
| 50 'include_dirs' : [ | 50 'include_dirs' : [ |
| 51 '../src/gpu', #gl/GrGLUtil.h | 51 '../src/gpu', #gl/GrGLUtil.h |
| 52 ] | 52 ] |
| 53 }], | 53 }], |
| 54 [ 'skia_os == "win"', { | 54 [ 'skia_os == "win"', { |
| 55 'sources' : [ | 55 'sources' : [ |
| (...skipping 26 matching lines...) Expand all Loading... |
| 82 }, | 82 }, |
| 83 'mac_bundle_resources' : [ | 83 'mac_bundle_resources' : [ |
| 84 '../experimental/SkiaExamples/SkiaExamples.xib' | 84 '../experimental/SkiaExamples/SkiaExamples.xib' |
| 85 ], | 85 ], |
| 86 } | 86 } |
| 87 ], | 87 ], |
| 88 ], | 88 ], |
| 89 } | 89 } |
| 90 ], | 90 ], |
| 91 } | 91 } |
| OLD | NEW |