OLD | NEW |
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 Loading... |
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: |
OLD | NEW |