OLD | NEW |
1 # Gyp for utils. | 1 # Gyp for utils. |
2 { | 2 { |
3 'targets': [ | 3 'targets': [ |
4 { | 4 { |
5 'target_name': 'utils', | 5 'target_name': 'utils', |
6 'product_name': 'skia_utils', | 6 'product_name': 'skia_utils', |
7 'type': 'static_library', | 7 'type': 'static_library', |
8 'standalone_static_library': 1, | 8 'standalone_static_library': 1, |
9 'dependencies': [ | 9 'dependencies': [ |
10 'core.gyp:*', | 10 'core.gyp:*', |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 ], | 207 ], |
208 'sources!': [ | 208 'sources!': [ |
209 '../src/utils/SkThreadUtils_pthread_linux.cpp', | 209 '../src/utils/SkThreadUtils_pthread_linux.cpp', |
210 ], | 210 ], |
211 }], | 211 }], |
212 [ 'skia_os == "android"', { | 212 [ 'skia_os == "android"', { |
213 'sources': [ | 213 'sources': [ |
214 '../src/utils/android/ashmem.cpp', | 214 '../src/utils/android/ashmem.cpp', |
215 ], | 215 ], |
216 }], | 216 }], |
| 217 ['skia_run_pdfviewer_in_gm', { |
| 218 'defines': [ |
| 219 'SK_BUILD_NATIVE_PDF_RENDERER', |
| 220 ], |
| 221 }], |
217 ], | 222 ], |
218 'direct_dependent_settings': { | 223 'direct_dependent_settings': { |
219 'include_dirs': [ | 224 'include_dirs': [ |
220 '../include/utils', | 225 '../include/utils', |
221 ], | 226 ], |
222 }, | 227 }, |
223 }, | 228 }, |
224 ], | 229 ], |
225 } | 230 } |
226 | 231 |
227 # Local Variables: | 232 # Local Variables: |
228 # tab-width:2 | 233 # tab-width:2 |
229 # indent-tabs-mode:nil | 234 # indent-tabs-mode:nil |
230 # End: | 235 # End: |
231 # vim: set expandtab tabstop=2 shiftwidth=2: | 236 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |