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

Side by Side Diff: gyp/v8.gyp

Issue 121303004: Fleshed out a lot of the Path interfac (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 11 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
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 '../../../v8/include', 10 '../../../v8/include',
11 ], 11 ],
tfarina 2014/01/06 15:58:13 while you are here, can you fix the indentation he
12 'includes': [], 12 'includes': [],
tfarina 2014/01/06 15:58:13 can you remove this.
13 'sources': [ 13 'sources': [
tfarina 2014/01/06 15:58:13 and here.
14 '../experimental/SkV8Example/SkV8Example.h', 14 '../experimental/SkV8Example/SkV8Example.h',
15 '../experimental/SkV8Example/SkV8Example.cpp', 15 '../experimental/SkV8Example/SkV8Example.cpp',
tfarina 2014/01/06 15:58:13 sort in alphabetical order, .cpp before .h
16 '../experimental/SkV8Example/Global.h', 16 '../experimental/SkV8Example/Global.h',
17 '../experimental/SkV8Example/Global.cpp', 17 '../experimental/SkV8Example/Global.cpp',
18 '../experimental/SkV8Example/Path.h',
19 '../experimental/SkV8Example/Path.cpp',
20 '../experimental/SkV8Example/JsContext.h',
21 '../experimental/SkV8Example/JsContext.cpp',
18 ], 22 ],
19 'dependencies': [ 23 'dependencies': [
20 'skia_lib.gyp:skia_lib', 24 'skia_lib.gyp:skia_lib',
21 'views.gyp:views', 25 'views.gyp:views',
22 'xml.gyp:xml', 26 'xml.gyp:xml',
23 'flags.gyp:flags', 27 'flags.gyp:flags',
tfarina 2014/01/06 15:58:13 sort
24 ], 28 ],
25 29
26 'link_settings': { 30 'link_settings': {
tfarina 2014/01/06 15:58:13 indentation.
27 'libraries': [ 31 'libraries': [
28 32
29 # 'd:/src/v8/build/Debug/lib/v8_base.ia32.lib', 33 # 'd:/src/v8/build/Debug/lib/v8_base.ia32.lib',
30 # 'd:/src/v8/build/Debug/lib/v8_snapshot.lib', 34 # 'd:/src/v8/build/Debug/lib/v8_snapshot.lib',
31 35
32 # 'd:/src/v8/build/Debug/lib/icuuc.lib', 36 # 'd:/src/v8/build/Debug/lib/icuuc.lib',
33 # 'd:/src/v8/build/Debug/lib/icui18n.lib', 37 # 'd:/src/v8/build/Debug/lib/icui18n.lib',
34 38
35 # 'Ws2_32.lib', 39 # 'Ws2_32.lib',
36 # 'Winmm.lib', 40 # 'Winmm.lib',
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 }, 88 },
85 'mac_bundle_resources' : [ 89 'mac_bundle_resources' : [
86 '../experimental/SkiaExamples/SkiaExamples.xib' 90 '../experimental/SkiaExamples/SkiaExamples.xib'
87 ], 91 ],
88 } 92 }
89 ], 93 ],
90 ], 94 ],
91 } 95 }
92 ], 96 ],
93 } 97 }
OLDNEW
« experimental/SkV8Example/Path.cpp ('K') | « experimental/SkV8Example/speed.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698