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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 '../third_party/lua/src/', | 52 '../third_party/lua/src/', |
53 ], | 53 ], |
54 'all_dependent_settings': { | 54 'all_dependent_settings': { |
55 'include_dirs': [ | 55 'include_dirs': [ |
56 '../third_party/lua/src/', | 56 '../third_party/lua/src/', |
57 ], | 57 ], |
58 }, | 58 }, |
59 'defines': [ | 59 'defines': [ |
60 "getlocaledecpoint()='.'", | 60 "getlocaledecpoint()='.'", |
61 ], | 61 ], |
| 62 'cflags': [ |
| 63 '-Wno-parentheses-equality', |
| 64 '-Wno-pointer-bool-conversion', |
| 65 ], |
| 66 'xcode_settings': { |
| 67 'WARNING_CFLAGS': [ |
| 68 '-Wno-parentheses-equality', |
| 69 '-Wno-pointer-bool-conversion', |
| 70 ], |
| 71 }, |
62 'conditions': [ | 72 'conditions': [ |
63 ['skia_os != "win"', | 73 ['skia_os != "win"', |
64 { | 74 { |
65 'defines': [ | 75 'defines': [ |
66 'LUA_USE_POSIX', # Fix warning re dangerous tmpnam. | 76 'LUA_USE_POSIX', # Fix warning re dangerous tmpnam. |
67 ], | 77 ], |
68 } | 78 } |
69 ], | 79 ], |
70 [ 'skia_clang_build == 1', { | 80 [ 'skia_clang_build == 1', { |
71 'cflags':[ | 81 'cflags':[ |
72 '-w', | 82 '-w', |
73 ], | 83 ], |
74 }], | 84 }], |
75 ], | 85 ], |
76 }, | 86 }, |
77 ], | 87 ], |
78 } | 88 } |
OLD | NEW |