OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 }, | 7 }, |
8 'targets': [ | 8 'targets': [ |
9 { | 9 { |
10 'target_name': 're2', | 10 'target_name': 're2', |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 'util/utf.h', | 70 'util/utf.h', |
71 'util/util.h', | 71 'util/util.h', |
72 ], | 72 ], |
73 'conditions': [ | 73 'conditions': [ |
74 ['OS=="win"', { | 74 ['OS=="win"', { |
75 'sources': [ | 75 'sources': [ |
76 'mswin/stdint.h' | 76 'mswin/stdint.h' |
77 ], | 77 ], |
78 'include_dirs': [ | 78 'include_dirs': [ |
79 'mswin' | 79 'mswin' |
80 ] | 80 ], |
| 81 'msvs_disabled_warnings': [ 4018 ], |
81 }] | 82 }] |
82 ] | 83 ] |
83 }, | 84 }, |
84 ], | 85 ], |
85 } | 86 } |
OLD | NEW |