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

Side by Side Diff: gyp/utils.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 { 1 {
2 'targets': [ 2 'targets': [
3 { 3 {
4 'target_name': 'utils', 4 'target_name': 'utils',
5 'product_name': 'skia_utils', 5 'product_name': 'skia_utils',
6 'type': 'static_library', 6 'type': 'static_library',
7 'standalone_static_library': 1, 7 'standalone_static_library': 1,
8 'include_dirs': [ 8 'include_dirs': [
9 '../include/config', 9 '../include/config',
10 '../include/core', 10 '../include/core',
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 },{ #else if 'skia_os != "mac"' 139 },{ #else if 'skia_os != "mac"'
140 'include_dirs!': [ 140 'include_dirs!': [
141 '../include/utils/mac', 141 '../include/utils/mac',
142 ], 142 ],
143 'sources!': [ 143 'sources!': [
144 '../include/utils/mac/SkCGUtils.h', 144 '../include/utils/mac/SkCGUtils.h',
145 '../src/utils/mac/SkCreateCGImageRef.cpp', 145 '../src/utils/mac/SkCreateCGImageRef.cpp',
146 '../src/utils/SkThreadUtils_pthread_mach.cpp', 146 '../src/utils/SkThreadUtils_pthread_mach.cpp',
147 ], 147 ],
148 }], 148 }],
149 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { 149 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', {
150 'sources!': [ 150 'sources!': [
151 '../src/utils/SkThreadUtils_pthread_other.cpp', 151 '../src/utils/SkThreadUtils_pthread_other.cpp',
152 ], 152 ],
153 },{ #else if 'skia_os not in ["linux", "freebsd", "openbsd", "solaris"]' 153 },{ #else if 'skia_os not in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]'
154 'include_dirs!': [ 154 'include_dirs!': [
155 '../include/utils/unix', 155 '../include/utils/unix',
156 ], 156 ],
157 'sources!': [ 157 'sources!': [
158 '../src/utils/SkThreadUtils_pthread_linux.cpp', 158 '../src/utils/SkThreadUtils_pthread_linux.cpp',
159 ], 159 ],
160 }], 160 }],
161 [ 'skia_os == "win"', { 161 [ 'skia_os == "win"', {
162 'direct_dependent_settings': { 162 'direct_dependent_settings': {
163 'include_dirs': [ 163 'include_dirs': [
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 }, 209 },
210 }, 210 },
211 ], 211 ],
212 } 212 }
213 213
214 # Local Variables: 214 # Local Variables:
215 # tab-width:2 215 # tab-width:2
216 # indent-tabs-mode:nil 216 # indent-tabs-mode:nil
217 # End: 217 # End:
218 # vim: set expandtab tabstop=2 shiftwidth=2: 218 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698