Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # conditions used in both common.gypi and skia.gyp in chromium | 1 # conditions used in both common.gypi and skia.gyp in chromium |
| 2 # | 2 # |
| 3 { | 3 { |
| 4 'defines': [ | 4 'defines': [ |
| 5 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=<(skia_static_initializers)', | 5 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=<(skia_static_initializers)', |
| 6 'SK_SUPPORT_GPU=<(skia_gpu)', | 6 'SK_SUPPORT_GPU=<(skia_gpu)', |
| 7 'SK_SUPPORT_OPENCL=<(skia_opencl)', | 7 'SK_SUPPORT_OPENCL=<(skia_opencl)', |
| 8 'SK_FORCE_DISTANCEFIELD_FONTS=<(skia_force_distancefield_fonts)', | 8 'SK_FORCE_DISTANCEFIELD_FONTS=<(skia_force_distancefield_fonts)', |
| 9 ], | 9 ], |
| 10 'conditions' : [ | 10 'conditions' : [ |
| (...skipping 599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 610 ], | 610 ], |
| 611 'GCC_THUMB_SUPPORT': 'NO', | 611 'GCC_THUMB_SUPPORT': 'NO', |
| 612 }, | 612 }, |
| 613 }, | 613 }, |
| 614 ], | 614 ], |
| 615 | 615 |
| 616 [ 'skia_os == "android"', | 616 [ 'skia_os == "android"', |
| 617 { | 617 { |
| 618 'defines': [ | 618 'defines': [ |
| 619 'SK_BUILD_FOR_ANDROID', | 619 'SK_BUILD_FOR_ANDROID', |
| 620 'SK_FONTHOST_DOES_NOT_USE_FONTMGR', | 620 # 'SK_FONTHOST_DOES_NOT_USE_FONTMGR', |
|
djsollen
2014/07/22 18:18:29
add me back!
bungeman-skia
2014/07/22 18:48:16
Done.
| |
| 621 | 621 |
| 622 # Android Text Tuning | 622 # Android Text Tuning |
| 623 'SK_GAMMA_EXPONENT=1.4', | 623 'SK_GAMMA_EXPONENT=1.4', |
| 624 'SK_GAMMA_CONTRAST=0.0', | 624 'SK_GAMMA_CONTRAST=0.0', |
| 625 ], | 625 ], |
| 626 # Android defines a fixed gamma exponent instead of using SRGB | 626 # Android defines a fixed gamma exponent instead of using SRGB |
| 627 'defines!': [ | 627 'defines!': [ |
| 628 'SK_GAMMA_SRGB', | 628 'SK_GAMMA_SRGB', |
| 629 ], | 629 ], |
| 630 'configurations': { | 630 'configurations': { |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 689 [ 'skia_crash_handler', { | 689 [ 'skia_crash_handler', { |
| 690 'defines': [ 'SK_CRASH_HANDLER' ], | 690 'defines': [ 'SK_CRASH_HANDLER' ], |
| 691 }], | 691 }], |
| 692 | 692 |
| 693 ], # end 'conditions' | 693 ], # end 'conditions' |
| 694 # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for more details | 694 # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for more details |
| 695 'xcode_settings': { | 695 'xcode_settings': { |
| 696 'SYMROOT': '<(DEPTH)/xcodebuild', | 696 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 697 }, | 697 }, |
| 698 } | 698 } |
| OLD | NEW |