| OLD | NEW |
| 1 # | 1 # |
| 2 # Copyright 2013 Google Inc. | 2 # Copyright 2013 Google Inc. |
| 3 # | 3 # |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 # | 6 # |
| 7 | 7 |
| 8 { | 8 { |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 ['skia_os != "win"', | 63 ['skia_os != "win"', |
| 64 { | 64 { |
| 65 'defines': [ | 65 'defines': [ |
| 66 'LUA_USE_POSIX', # Fix warning re dangerous tmpnam. | 66 'LUA_USE_POSIX', # Fix warning re dangerous tmpnam. |
| 67 ], | 67 ], |
| 68 } | 68 } |
| 69 ], | 69 ], |
| 70 [ 'skia_clang_build == 1', { | 70 [ 'skia_clang_build == 1', { |
| 71 'cflags':[ | 71 'cflags':[ |
| 72 '-Wno-error', | 72 '-Wno-error', |
| 73 '-Wno-parentheses-equality', |
| 74 '-Wno-pointer-bool-conversion', |
| 73 ], | 75 ], |
| 74 }], | 76 }], |
| 75 ], | 77 ], |
| 76 }, | 78 }, |
| 77 ], | 79 ], |
| 78 } | 80 } |
| OLD | NEW |