| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 # This gypi file handles the removal of platform-specific files from the | 5 # This gypi file handles the removal of platform-specific files from the |
| 6 # Skia build. | 6 # Skia build. |
| 7 { | 7 { |
| 8 'includes': [ | 8 'includes': [ |
| 9 # blink_skia_config.gypi defines blink_skia_defines | 9 # blink_skia_config.gypi defines blink_skia_defines |
| 10 '../third_party/WebKit/public/blink_skia_config.gypi', | 10 '../third_party/WebKit/public/blink_skia_config.gypi', |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 'SK_BUILD_FOR_ANDROID', | 152 'SK_BUILD_FOR_ANDROID', |
| 153 ], | 153 ], |
| 154 }], | 154 }], |
| 155 ], | 155 ], |
| 156 }, | 156 }, |
| 157 | 157 |
| 158 'defines': [ | 158 'defines': [ |
| 159 '<@(skia_export_defines)', | 159 '<@(skia_export_defines)', |
| 160 | 160 |
| 161 'SK_DEFAULT_FONT_CACHE_LIMIT=<(default_font_cache_limit)', | 161 'SK_DEFAULT_FONT_CACHE_LIMIT=<(default_font_cache_limit)', |
| 162 'SK_IGNORE_MAC_FONT_WEIGHT_FIX=1', |
| 162 ], | 163 ], |
| 163 | 164 |
| 164 'direct_dependent_settings': { | 165 'direct_dependent_settings': { |
| 165 'defines': [ | 166 'defines': [ |
| 166 '<@(skia_export_defines)', | 167 '<@(skia_export_defines)', |
| 167 ], | 168 ], |
| 168 }, | 169 }, |
| 169 | 170 |
| 170 # We would prefer this to be direct_dependent_settings, | 171 # We would prefer this to be direct_dependent_settings, |
| 171 # however we currently have no means to enforce that direct dependents | 172 # however we currently have no means to enforce that direct dependents |
| 172 # re-export if they include Skia headers in their public headers. | 173 # re-export if they include Skia headers in their public headers. |
| 173 'all_dependent_settings': { | 174 'all_dependent_settings': { |
| 174 'include_dirs': [ | 175 'include_dirs': [ |
| 175 '..', | 176 '..', |
| 176 'config', | 177 'config', |
| 177 ], | 178 ], |
| 178 }, | 179 }, |
| 179 | 180 |
| 180 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4748, 4800], | 181 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4748, 4800], |
| 181 } | 182 } |
| OLD | NEW |