Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Side by Side Diff: gyp/v8.gyp

Issue 673223002: Get SkV8Example running again. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « experimental/SkV8Example/SkV8Example.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 '../third_party/externals/v8/include', 9 '../third_party/externals/v8/include',
10 '../third_party/externals/v8',
10 ], 11 ],
11 'sources': [ 12 'sources': [
12 '../experimental/SkV8Example/BaseContext.cpp', 13 '../experimental/SkV8Example/BaseContext.cpp',
13 '../experimental/SkV8Example/BaseContext.h', 14 '../experimental/SkV8Example/BaseContext.h',
14 '../experimental/SkV8Example/Global.cpp', 15 '../experimental/SkV8Example/Global.cpp',
15 '../experimental/SkV8Example/Global.h', 16 '../experimental/SkV8Example/Global.h',
16 '../experimental/SkV8Example/JsContext.cpp', 17 '../experimental/SkV8Example/JsContext.cpp',
17 '../experimental/SkV8Example/JsContext.h', 18 '../experimental/SkV8Example/JsContext.h',
18 '../experimental/SkV8Example/Path2D.cpp', 19 '../experimental/SkV8Example/Path2D.cpp',
19 '../experimental/SkV8Example/Path2D.h', 20 '../experimental/SkV8Example/Path2D.h',
(...skipping 11 matching lines...) Expand all
31 32
32 # 'd:/src/v8/build/Debug/lib/v8_base.ia32.lib', 33 # 'd:/src/v8/build/Debug/lib/v8_base.ia32.lib',
33 # 'd:/src/v8/build/Debug/lib/v8_snapshot.lib', 34 # 'd:/src/v8/build/Debug/lib/v8_snapshot.lib',
34 # 'd:/src/v8/build/Debug/lib/icuuc.lib', 35 # 'd:/src/v8/build/Debug/lib/icuuc.lib',
35 # 'd:/src/v8/build/Debug/lib/icui18n.lib', 36 # 'd:/src/v8/build/Debug/lib/icui18n.lib',
36 # 'Ws2_32.lib', 37 # 'Ws2_32.lib',
37 # 'Winmm.lib', 38 # 'Winmm.lib',
38 39
39 '-lpthread', 40 '-lpthread',
40 '-lrt', 41 '-lrt',
41 '../../third_party/externals/v8/out/native/obj.target/tools/gyp/libv8_ base.x64.a', 42 '../../third_party/externals/v8/out/native/obj.target/tools/gyp/libv8_ base.a',
43 '../../third_party/externals/v8/out/native/obj.target/tools/gyp/libv8_ libbase.a',
42 '../../third_party/externals/v8/out/native/obj.target/tools/gyp/libv8_ snapshot.a', 44 '../../third_party/externals/v8/out/native/obj.target/tools/gyp/libv8_ snapshot.a',
45 '../../third_party/externals/v8/out/native/obj.target/tools/gyp/libv8_ libplatform.a',
43 '../../third_party/externals/v8/out/native/obj.target/third_party/icu/ libicudata.a', 46 '../../third_party/externals/v8/out/native/obj.target/third_party/icu/ libicudata.a',
44 '../../third_party/externals/v8/out/native/obj.target/third_party/icu/ libicui18n.a', 47 '../../third_party/externals/v8/out/native/obj.target/third_party/icu/ libicui18n.a',
45 '../../third_party/externals/v8/out/native/obj.target/third_party/icu/ libicuuc.a', 48 '../../third_party/externals/v8/out/native/obj.target/third_party/icu/ libicuuc.a',
46 '../../third_party/externals/v8/out/native/obj.target/icudata/third_pa rty/icu/linux/icudt46l_dat.o', 49 '../../third_party/externals/v8/out/native/obj.target/icudata/third_pa rty/icu/linux/icudtl_dat.o',
47 ], 50 ],
48 }, 51 },
49 'conditions' : [ 52 'conditions' : [
50 [ 'skia_gpu == 1', { 53 [ 'skia_gpu == 1', {
51 'include_dirs' : [ 54 'include_dirs' : [
52 '../src/gpu', 55 '../src/gpu',
53 ] 56 ]
54 }], 57 }],
55 [ 'skia_os == "win"', { 58 [ 'skia_os == "win"', {
56 'sources' : [ 59 'sources' : [
(...skipping 22 matching lines...) Expand all
79 'INFOPLIST_FILE' : '../experimental/SkiaExamples/SkiaExamples-Info.p list', 82 'INFOPLIST_FILE' : '../experimental/SkiaExamples/SkiaExamples-Info.p list',
80 }, 83 },
81 'mac_bundle_resources' : [ 84 'mac_bundle_resources' : [
82 '../experimental/SkiaExamples/SkiaExamples.xib' 85 '../experimental/SkiaExamples/SkiaExamples.xib'
83 ], 86 ],
84 }], 87 }],
85 ], 88 ],
86 } 89 }
87 ], 90 ],
88 } 91 }
OLDNEW
« no previous file with comments | « experimental/SkV8Example/SkV8Example.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698