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

Side by Side Diff: gyp/views.gyp

Issue 890873003: update example (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: remove multiple example cruft Created 5 years, 10 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
« no previous file with comments | « gyp/experimental.gyp ('k') | include/views/SkOSWindow_Android.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Views is the Skia windowing toolkit. 1 # Views is the Skia windowing toolkit.
2 # It provides: 2 # It provides:
3 # * A portable means of creating native windows. 3 # * A portable means of creating native windows.
4 # * Events. 4 # * Events.
5 # * Basic widgets and controls. 5 # * Basic widgets and controls.
6 6
7 { 7 {
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'views', 10 'target_name': 'views',
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 70
71 # Windows 71 # Windows
72 '../src/views/win/SkOSWindow_win.cpp', 72 '../src/views/win/SkOSWindow_win.cpp',
73 '../src/views/win/skia_win.cpp', 73 '../src/views/win/skia_win.cpp',
74 74
75 ], 75 ],
76 'sources!' : [ 76 'sources!' : [
77 '../src/views/SDL/SkOSWindow_SDL.cpp', 77 '../src/views/SDL/SkOSWindow_SDL.cpp',
78 ], 78 ],
79 'conditions': [ 79 'conditions': [
80 [ 'skia_gpu == 1', {
81 'include_dirs' : [
82 '../src/gpu',
83 ],
84 }],
80 [ 'skia_os == "mac"', { 85 [ 'skia_os == "mac"', {
81 'link_settings': { 86 'link_settings': {
82 'libraries': [ 87 'libraries': [
83 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework', 88 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework',
84 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 89 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
85 ], 90 ],
86 }, 91 },
87 },{ 92 },{
88 'sources!': [ 93 'sources!': [
89 '../src/views/mac/SkOSWindow_Mac.mm', 94 '../src/views/mac/SkOSWindow_Mac.mm',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 'include_dirs': [ 138 'include_dirs': [
134 '../include/views', 139 '../include/views',
135 ], 140 ],
136 }, 141 },
137 'export_dependent_settings': [ 142 'export_dependent_settings': [
138 'xml.gyp:xml', 143 'xml.gyp:xml',
139 ], 144 ],
140 }, 145 },
141 ], 146 ],
142 } 147 }
OLDNEW
« no previous file with comments | « gyp/experimental.gyp ('k') | include/views/SkOSWindow_Android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698