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

Side by Side Diff: gyp/v8.gyp

Issue 161163003: Update directions and lib paths for ninja. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: retry upload Created 6 years, 10 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/README ('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 '../tools/flags', 9 '../tools/flags',
10 '../third_party/externals/v8/include', 10 '../third_party/externals/v8/include',
(...skipping 19 matching lines...) Expand all
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
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 }
OLDNEW
« no previous file with comments | « experimental/SkV8Example/README ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698