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

Side by Side Diff: gyp/v8.gyp

Issue 93933005: V8 and Skia (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: no v8 in .h Created 7 years 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 | Annotate | Revision Log
« no previous file with comments | « gyp/everything.gyp ('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
(Empty)
1 # GYP file to build a V8 sample.
2 {
3 'targets': [
4 {
5 'target_name': 'SkV8Example',
6 'type': 'executable',
7 'mac_bundle' : 1,
8 'include_dirs' : [
9 '../tools/flags',
10 '../../../v8/include',
11 ],
12 'includes': [],
13 'sources': [
14 '../experimental/SkV8Example/SkV8Example.h',
15 '../experimental/SkV8Example/SkV8Example.cpp',
16 ],
17 'dependencies': [
18 'skia_lib.gyp:skia_lib',
19 'views.gyp:views',
20 'xml.gyp:xml',
21 ],
22
23 'link_settings': {
24 'libraries': [
25
26 '-lpthread',
27 '-lrt',
28 '../../../v8/out/native/obj.target/tools/gyp/libv8_base.x64.a',
29 '../../../v8/out/native/obj.target/tools/gyp/libv8_snapshot.a',
30
31 '../../../v8/out/native/obj.target/third_party/icu/libicudata.a',
32 '../../../v8/out/native/obj.target/third_party/icu/libicui18n.a',
33 '../../../v8/out/native/obj.target/third_party/icu/libicuuc.a',
34
35 '../../../v8/out/native/obj.target/icudata/third_party/icu/linux/icudt 46l_dat.o',
36 ],
37 },
38 'conditions' : [
39 [ 'skia_gpu == 1', {
40 'include_dirs' : [
41 '../src/gpu', #gl/GrGLUtil.h
42 ]
43 }],
44 [ 'skia_os == "win"', {
45 'sources' : [
46 '../src/views/win/SkOSWindow_Win.cpp',
47 '../src/views/win/skia_win.cpp',
48 ],
49 },
50 ],
51
52 [ 'skia_os == "mac"', {
53 'sources': [
54
55 '../src/views/mac/SampleAppDelegate.h',
56 '../src/views/mac/SampleAppDelegate.mm',
57 '../src/views/mac/SkEventNotifier.mm',
58 '../src/views/mac/skia_mac.mm',
59 '../src/views/mac/SkNSView.h',
60 '../src/views/mac/SkNSView.mm',
61 '../src/views/mac/SkOptionsTableView.h',
62 '../src/views/mac/SkOptionsTableView.mm',
63 '../src/views/mac/SkOSWindow_Mac.mm',
64 '../src/views/mac/SkTextFieldCell.h',
65 '../src/views/mac/SkTextFieldCell.m',
66 ],
67 'include_dirs' : [
68 '../src/views/mac/'
69 ],
70 'xcode_settings' : {
71 'INFOPLIST_FILE' : '../experimental/SkiaExamples/SkiaExamples-Info.pli st',
72 },
73 'mac_bundle_resources' : [
74 '../experimental/SkiaExamples/SkiaExamples.xib'
75 ],
76 }
77 ],
78 ],
79 }
80 ],
81 }
OLDNEW
« no previous file with comments | « gyp/everything.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698