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

Side by Side Diff: gyp/experimental.gyp

Issue 18574002: SkiaExamples improvements. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Make diffs usable Created 7 years, 5 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 'targets': [ 2 'targets': [
3 { 3 {
4 'target_name': 'experimental', 4 'target_name': 'experimental',
5 'type': 'static_library', 5 'type': 'static_library',
6 'include_dirs': [ 6 'include_dirs': [
7 '../include/config', 7 '../include/config',
8 '../include/core', 8 '../include/core',
9 ], 9 ],
10 'sources': [ 10 'sources': [
11 '../experimental/SkSetPoly3To3.cpp', 11 '../experimental/SkSetPoly3To3.cpp',
12 '../experimental/SkSetPoly3To3_A.cpp', 12 '../experimental/SkSetPoly3To3_A.cpp',
13 '../experimental/SkSetPoly3To3_D.cpp', 13 '../experimental/SkSetPoly3To3_D.cpp',
14 ], 14 ],
15 'direct_dependent_settings': { 15 'direct_dependent_settings': {
16 'include_dirs': [ 16 'include_dirs': [
17 '../experimental', 17 '../experimental',
18 ], 18 ],
19 }, 19 },
20 }, 20 },
21 {
22 'target_name': 'SkiaExamples',
23 'type': 'executable',
24 'mac_bundle' : 1,
25 'include_dirs' : [],
26 'includes': [],
27 'sources': [
28 '../experimental/SkiaExamples/SkExample.h',
29 '../experimental/SkiaExamples/SkExample.cpp',
30 ],
31 'dependencies': [
32 'skia_lib.gyp:skia_lib',
33 'views.gyp:views',
34 'xml.gyp:xml',
35 ],
36 'conditions' : [
37 [ 'skia_gpu == 1', {
38 'include_dirs' : [
39 '../src/gpu', #gl/GrGLUtil.h
40 ]
41 }],
42 [ 'skia_os == "win"', {
43 'sources' : [
44 '../src/views/win/SkOSWindow_Win.cpp',
45 '../src/views/win/skia_win.cpp',
46 ],
47 },
48 ],
49
50 [ 'skia_os == "mac"', {
51 'sources': [
52
53 # SkiaExamples specific files
54 '../experimental/SkiaExamples/SkiaExamples-Info.plist',
55 '../experimental/SkiaExamples/SkExampleNSView.h',
56 '../experimental/SkiaExamples/SkExampleNSView.mm',
57
58 # Mac files
59 '../src/views/mac/SampleAppDelegate.h',
60 '../src/views/mac/SampleAppDelegate.mm',
61 '../src/views/mac/SkEventNotifier.mm',
62 '../src/views/mac/skia_mac.mm',
63 '../src/views/mac/SkNSView.h',
64 '../src/views/mac/SkNSView.mm',
65 '../src/views/mac/SkOptionsTableView.h',
66 '../src/views/mac/SkOptionsTableView.mm',
67 '../src/views/mac/SkOSWindow_Mac.mm',
68 '../src/views/mac/SkTextFieldCell.h',
69 '../src/views/mac/SkTextFieldCell.m',
70 ],
71 'include_dirs' : [
72 '../src/views/mac/'
73 ],
74 'link_settings': {
75 },
76 'xcode_settings' : {
77 'INFOPLIST_FILE' : '../experimental/SkiaExamples/SkiaExamples-Info.pli st',
78 },
79 'mac_bundle_resources' : [
80 '../experimental/SkiaExamples/SkiaExamples.xib'
81 ],
82 }
83 ],
84 ],
85 }
21 ], 86 ],
22 } 87 }
23 88
24 # Local Variables: 89 # Local Variables:
25 # tab-width:2 90 # tab-width:2
26 # indent-tabs-mode:nil 91 # indent-tabs-mode:nil
27 # End: 92 # End:
28 # vim: set expandtab tabstop=2 shiftwidth=2: 93 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« experimental/SkiaExamples/SkExample.cpp ('K') | « gyp/SkiaExamples.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698