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

Side by Side Diff: gyp/SampleApp.gyp

Issue 15747004: Add path utils, plus a test for it. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Remove extra SkPathJoin implementation. Created 7 years, 7 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 # GYP for building SampleApp.
1 { 2 {
2 'targets': [ 3 'targets': [
3 { 4 {
4 'target_name': 'SampleApp', 5 'target_name': 'SampleApp',
5 'type': 'executable', 6 'type': 'executable',
6 'mac_bundle' : 1, 7 'mac_bundle' : 1,
7 'include_dirs' : [ 8 'include_dirs' : [
8 '../debugger', 9 '../debugger',
9 '../src/core', 10 '../src/core',
10 '../src/effects', #needed for BlurMask.h 11 '../src/effects', #needed for BlurMask.h
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 ], 139 ],
139 'dependencies': [ 140 'dependencies': [
140 'skia_base_libs.gyp:skia_base_libs', 141 'skia_base_libs.gyp:skia_base_libs',
141 'effects.gyp:effects', 142 'effects.gyp:effects',
142 'images.gyp:images', 143 'images.gyp:images',
143 'views.gyp:views', 144 'views.gyp:views',
144 'animator.gyp:animator', 145 'animator.gyp:animator',
145 'xml.gyp:xml', 146 'xml.gyp:xml',
146 'experimental.gyp:experimental', 147 'experimental.gyp:experimental',
147 'pdf.gyp:pdf', 148 'pdf.gyp:pdf',
149 'utils.gyp:utils',
148 'views_animated.gyp:views_animated', 150 'views_animated.gyp:views_animated',
149 ], 151 ],
150 'conditions' : [ 152 'conditions' : [
151 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { 153 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', {
152 'sources!': [ 154 'sources!': [
153 '../samplecode/SampleDecode.cpp', 155 '../samplecode/SampleDecode.cpp',
154 ], 156 ],
155 }], 157 }],
156 [ 'skia_os == "win"', { 158 [ 'skia_os == "win"', {
157 'sources!': [ 159 'sources!': [
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 }, 305 },
304 }, 306 },
305 ], 307 ],
306 } 308 }
307 309
308 # Local Variables: 310 # Local Variables:
309 # tab-width:2 311 # tab-width:2
310 # indent-tabs-mode:nil 312 # indent-tabs-mode:nil
311 # End: 313 # End:
312 # vim: set expandtab tabstop=2 shiftwidth=2: 314 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698