OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 'include_dirs': [ | 128 'include_dirs': [ |
129 'cpp/src', '../..', | 129 'cpp/src', '../..', |
130 ], | 130 ], |
131 # This macro must be define to suppress the use of exception | 131 # This macro must be define to suppress the use of exception |
132 'defines': [ | 132 'defines': [ |
133 'SFNTLY_NO_EXCEPTION', | 133 'SFNTLY_NO_EXCEPTION', |
134 ], | 134 ], |
135 'dependencies' : [ | 135 'dependencies' : [ |
136 '../icu/icu.gyp:icuuc', | 136 '../icu/icu.gyp:icuuc', |
137 ], | 137 ], |
| 138 # TODO(jschuh): http://crbug.com/167187 |
| 139 'msvs_disabled_warnings': [ 4267 ], |
138 }, | 140 }, |
139 ] | 141 ] |
140 } | 142 } |
OLD | NEW |