| 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 'dependencies': [ | 8 'dependencies': [ |
| 9 'cityhash', | 9 'cityhash', |
| 10 ], | 10 ], |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 '../src/utils/win/SkHRESULT.cpp', | 189 '../src/utils/win/SkHRESULT.cpp', |
| 190 '../src/utils/win/SkIStream.cpp', | 190 '../src/utils/win/SkIStream.cpp', |
| 191 ], | 191 ], |
| 192 }], | 192 }], |
| 193 [ 'skia_os == "nacl"', { | 193 [ 'skia_os == "nacl"', { |
| 194 'sources': [ | 194 'sources': [ |
| 195 '../src/utils/SkThreadUtils_pthread_other.cpp', | 195 '../src/utils/SkThreadUtils_pthread_other.cpp', |
| 196 ], | 196 ], |
| 197 'sources!': [ | 197 'sources!': [ |
| 198 '../src/utils/SkThreadUtils_pthread_linux.cpp', | 198 '../src/utils/SkThreadUtils_pthread_linux.cpp', |
| 199 '../src/utils/SkCityHash.cpp', |
| 200 '../src/utils/SkCityHash.h', |
| 201 ], |
| 202 'dependencies!': [ |
| 203 # CityHash is not supported on NaCl because the NaCl toolchain is |
| 204 # missing byteswap.h which is needed by CityHash. |
| 205 # TODO(borenet): Find a way to either provide this dependency or |
| 206 # replace it. |
| 207 'cityhash', |
| 199 ], | 208 ], |
| 200 }], | 209 }], |
| 201 [ 'skia_os == "android"', { | 210 [ 'skia_os == "android"', { |
| 202 'sources': [ | 211 'sources': [ |
| 203 '../src/utils/android/ashmem.cpp', | 212 '../src/utils/android/ashmem.cpp', |
| 204 ], | 213 ], |
| 205 }], | 214 }], |
| 206 ], | 215 ], |
| 207 'direct_dependent_settings': { | 216 'direct_dependent_settings': { |
| 208 'include_dirs': [ | 217 'include_dirs': [ |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 ], | 261 ], |
| 253 }, | 262 }, |
| 254 ], | 263 ], |
| 255 } | 264 } |
| 256 | 265 |
| 257 # Local Variables: | 266 # Local Variables: |
| 258 # tab-width:2 | 267 # tab-width:2 |
| 259 # indent-tabs-mode:nil | 268 # indent-tabs-mode:nil |
| 260 # End: | 269 # End: |
| 261 # vim: set expandtab tabstop=2 shiftwidth=2: | 270 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |