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

Side by Side Diff: gyp/v8.gyp

Issue 661033005: SkV8Sample: Now with Path2D and Path2DBuilder. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: path* Created 6 years, 1 month 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/js/sample.js ('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 '../third_party/externals/v8',
11 ], 11 ],
12 'sources': [ 12 'sources': [
13 '../experimental/SkV8Example/DrawingMethods.cpp', 13 '../experimental/SkV8Example/DrawingMethods.cpp',
14 '../experimental/SkV8Example/DrawingMethods.h', 14 '../experimental/SkV8Example/DrawingMethods.h',
15 '../experimental/SkV8Example/Global.cpp', 15 '../experimental/SkV8Example/Global.cpp',
16 '../experimental/SkV8Example/Global.h', 16 '../experimental/SkV8Example/Global.h',
17 '../experimental/SkV8Example/JsContext.cpp', 17 '../experimental/SkV8Example/JsContext.cpp',
18 '../experimental/SkV8Example/JsContext.h', 18 '../experimental/SkV8Example/JsContext.h',
19 '../experimental/SkV8Example/Path2DBuilder.cpp',
20 '../experimental/SkV8Example/Path2DBuilder.h',
19 '../experimental/SkV8Example/Path2D.cpp', 21 '../experimental/SkV8Example/Path2D.cpp',
20 '../experimental/SkV8Example/Path2D.h', 22 '../experimental/SkV8Example/Path2D.h',
21 '../experimental/SkV8Example/SkV8Example.cpp', 23 '../experimental/SkV8Example/SkV8Example.cpp',
22 '../experimental/SkV8Example/SkV8Example.h', 24 '../experimental/SkV8Example/SkV8Example.h',
23 ], 25 ],
24 'dependencies': [ 26 'dependencies': [
25 'flags.gyp:flags', 27 'flags.gyp:flags',
26 'skia_lib.gyp:skia_lib', 28 'skia_lib.gyp:skia_lib',
27 'views.gyp:views', 29 'views.gyp:views',
28 'xml.gyp:xml', 30 'xml.gyp:xml',
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 'INFOPLIST_FILE' : '../experimental/SkiaExamples/SkiaExamples-Info.p list', 84 'INFOPLIST_FILE' : '../experimental/SkiaExamples/SkiaExamples-Info.p list',
83 }, 85 },
84 'mac_bundle_resources' : [ 86 'mac_bundle_resources' : [
85 '../experimental/SkiaExamples/SkiaExamples.xib' 87 '../experimental/SkiaExamples/SkiaExamples.xib'
86 ], 88 ],
87 }], 89 }],
88 ], 90 ],
89 } 91 }
90 ], 92 ],
91 } 93 }
OLDNEW
« no previous file with comments | « experimental/SkV8Example/js/sample.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698