| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'skia', | 8 'target_name': 'skia', |
| 9 'type': '<(component)', | 9 'type': '<(component)', |
| 10 'variables': { | 10 'variables': { |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 ], | 274 ], |
| 275 'direct_dependent_settings': { | 275 'direct_dependent_settings': { |
| 276 'defines': [ | 276 'defines': [ |
| 277 'SK_DEBUG_PATH_REF=1', | 277 'SK_DEBUG_PATH_REF=1', |
| 278 ], | 278 ], |
| 279 }, | 279 }, |
| 280 }], | 280 }], |
| 281 #Settings for text blitting, chosen to approximate the system browser. | 281 #Settings for text blitting, chosen to approximate the system browser. |
| 282 [ 'OS == "linux"', { | 282 [ 'OS == "linux"', { |
| 283 'defines': [ | 283 'defines': [ |
| 284 'SK_GAMMA_EXPONENT=1.2', | 284 'SK_GAMMA_EXPONENT=1.8', |
| 285 'SK_GAMMA_CONTRAST=0.2', | 285 'SK_GAMMA_CONTRAST=0.3', |
| 286 'SK_FONTHOST_FREETYPE_USE_NORMAL_LCD_FILTER', |
| 287 'SK_CAN_USE_DLOPEN=1', |
| 286 ], | 288 ], |
| 287 }], | 289 }], |
| 288 ['OS == "android" or OS == "win"', { | 290 ['OS == "android" or OS == "win"', { |
| 289 'defines': [ | 291 'defines': [ |
| 290 'SK_GAMMA_SRGB', | 292 'SK_GAMMA_SRGB', |
| 291 'SK_GAMMA_CONTRAST=0.5', | 293 'SK_GAMMA_CONTRAST=0.5', |
| 292 ], | 294 ], |
| 293 }], | 295 }], |
| 294 ['OS == "mac"', { | 296 ['OS == "mac"', { |
| 295 'defines': [ | 297 'defines': [ |
| (...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 838 'sources': [ | 840 'sources': [ |
| 839 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', | 841 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', |
| 840 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', | 842 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', |
| 841 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', | 843 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', |
| 842 ], | 844 ], |
| 843 }, | 845 }, |
| 844 ], | 846 ], |
| 845 }], | 847 }], |
| 846 ], | 848 ], |
| 847 } | 849 } |
| OLD | NEW |