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

Side by Side Diff: gyp/images.gyp

Issue 16099011: GYP changes and scripts for compiling Skia for ChromeOS (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 6 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 file for images project. 1 # GYP file for images project.
2 { 2 {
3 'targets': [ 3 'targets': [
4 { 4 {
5 'target_name': 'images', 5 'target_name': 'images',
6 'product_name': 'skia_images', 6 'product_name': 'skia_images',
7 'type': 'static_library', 7 'type': 'static_library',
8 'standalone_static_library': 1, 8 'standalone_static_library': 1,
9 'dependencies': [ 9 'dependencies': [
10 'libjpeg.gyp:*', 10 'libjpeg.gyp:*',
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 'dependencies': [ 142 'dependencies': [
143 'android_deps.gyp:gif', 143 'android_deps.gyp:gif',
144 'android_deps.gyp:png', 144 'android_deps.gyp:png',
145 ], 145 ],
146 },{ #else if skia_os != android 146 },{ #else if skia_os != android
147 'sources!': [ 147 'sources!': [
148 '../src/images/SkImageRef_ashmem.h', 148 '../src/images/SkImageRef_ashmem.h',
149 '../src/images/SkImageRef_ashmem.cpp', 149 '../src/images/SkImageRef_ashmem.cpp',
150 ], 150 ],
151 }], 151 }],
152 [ 'skia_os == "chromeos"', {
153 'dependencies': [
154 'chromeos_deps.gyp:gif',
155 ],
156 'link_settings': {
157 'libraries': [
158 '-lpng',
159 ],
160 },
161 }],
152 [ 'skia_os == "ios"', { 162 [ 'skia_os == "ios"', {
153 'include_dirs': [ 163 'include_dirs': [
154 '../include/utils/mac', 164 '../include/utils/mac',
155 ], 165 ],
156 }], 166 }],
157 ], 167 ],
158 'direct_dependent_settings': { 168 'direct_dependent_settings': {
159 'include_dirs': [ 169 'include_dirs': [
160 '../include/images', 170 '../include/images',
161 '../include/lazy', 171 '../include/lazy',
162 ], 172 ],
163 }, 173 },
164 }, 174 },
165 ], 175 ],
166 } 176 }
167 177
168 # Local Variables: 178 # Local Variables:
169 # tab-width:2 179 # tab-width:2
170 # indent-tabs-mode:nil 180 # indent-tabs-mode:nil
171 # End: 181 # End:
172 # vim: set expandtab tabstop=2 shiftwidth=2: 182 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698