| 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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 'WarnAsError': 'false', | 251 'WarnAsError': 'false', |
| 252 }, | 252 }, |
| 253 }, | 253 }, |
| 254 }], | 254 }], |
| 255 [ 'skia_os == "android"', { | 255 [ 'skia_os == "android"', { |
| 256 'cflags!': [ | 256 'cflags!': [ |
| 257 '-Wall', | 257 '-Wall', |
| 258 '-Werror', | 258 '-Werror', |
| 259 ], | 259 ], |
| 260 }], | 260 }], |
| 261 ['skia_os in ["linux", "freebsd", "openbsd", "solaris", "nacl"]', { |
| 262 'cflags!': [ |
| 263 '-Werror', |
| 264 ], |
| 265 }], |
| 261 ], | 266 ], |
| 262 }, | 267 }, |
| 263 ], | 268 ], |
| 264 } | 269 } |
| 265 | 270 |
| 266 # Local Variables: | 271 # Local Variables: |
| 267 # tab-width:2 | 272 # tab-width:2 |
| 268 # indent-tabs-mode:nil | 273 # indent-tabs-mode:nil |
| 269 # End: | 274 # End: |
| 270 # vim: set expandtab tabstop=2 shiftwidth=2: | 275 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |