OLD | NEW |
---|---|
(Empty) | |
1 # GYP file to build experimental directory. | |
robertphillips
2013/12/03 20:49:27
Update the description?
jcgregorio
2013/12/03 21:06:44
Done.
| |
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' : { | |
robertphillips
2013/12/03 20:49:27
Doesn't this have to change?
jcgregorio
2013/12/03 21:06:44
I have no idea, can I just copy the files over fro
robertphillips
2013/12/04 18:40:58
Let's leave dealing with this stuff until later.
| |
71 'INFOPLIST_FILE' : '../experimental/SkiaExamples/SkiaExamples-Info.pli st', | |
72 }, | |
73 'mac_bundle_resources' : [ | |
robertphillips
2013/12/03 20:49:27
This too?
| |
74 '../experimental/SkiaExamples/SkiaExamples.xib' | |
75 ], | |
76 } | |
77 ], | |
78 ], | |
79 } | |
80 ], | |
81 } | |
OLD | NEW |