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

Side by Side Diff: gyp/utils.gyp

Issue 16099014: enable shared lib support in linux for lua (Closed) Base URL: https://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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 ], 194 ],
195 'sources!': [ 195 'sources!': [
196 '../src/utils/SkThreadUtils_pthread_linux.cpp', 196 '../src/utils/SkThreadUtils_pthread_linux.cpp',
197 ], 197 ],
198 }], 198 }],
199 [ 'skia_os == "android"', { 199 [ 'skia_os == "android"', {
200 'sources': [ 200 'sources': [
201 '../src/utils/android/ashmem.cpp', 201 '../src/utils/android/ashmem.cpp',
202 ], 202 ],
203 }], 203 }],
204 [ 'skia_lua', {
205 'sources': [
206 '../src/utils/SkLuaCanvas.cpp',
207 '../src/utils/SkLua.cpp',
208 ],
209 'include_dirs': [
210 '../third_party/lua/src/',
211 ],
212 }],
204 ], 213 ],
205 'direct_dependent_settings': { 214 'direct_dependent_settings': {
206 'include_dirs': [ 215 'include_dirs': [
207 '../include/utils', 216 '../include/utils',
208 ], 217 ],
209 }, 218 },
210 }, 219 },
211 ], 220 ],
212 } 221 }
213 222
214 # Local Variables: 223 # Local Variables:
215 # tab-width:2 224 # tab-width:2
216 # indent-tabs-mode:nil 225 # indent-tabs-mode:nil
217 # End: 226 # End:
218 # vim: set expandtab tabstop=2 shiftwidth=2: 227 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« gyp/skia_lib.gyp ('K') | « gyp/skia_lib.gyp ('k') | src/utils/SkLua.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698