| 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 ], | 6 ], |
| 7 'conditions' : [ | 7 'conditions' : [ |
| 8 [ 'skia_gpu == 1', | 8 [ 'skia_gpu == 1', |
| 9 { | 9 { |
| 10 'defines': [ | 10 'defines': [ |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 'defines': [ | 25 'defines': [ |
| 26 'SK_SUPPORT_OPENCL=0', | 26 'SK_SUPPORT_OPENCL=0', |
| 27 ], | 27 ], |
| 28 }, | 28 }, |
| 29 ], | 29 ], |
| 30 [ 'skia_os == "win"', | 30 [ 'skia_os == "win"', |
| 31 { | 31 { |
| 32 'defines': [ | 32 'defines': [ |
| 33 'SK_BUILD_FOR_WIN32', | 33 'SK_BUILD_FOR_WIN32', |
| 34 'SK_FONTHOST_USES_FONTMGR', | 34 'SK_FONTHOST_USES_FONTMGR', |
| 35 'SK_IGNORE_STDINT_DOT_H', | |
| 36 '_CRT_SECURE_NO_WARNINGS', | 35 '_CRT_SECURE_NO_WARNINGS', |
| 37 'GR_GL_FUNCTION_TYPE=__stdcall', | 36 'GR_GL_FUNCTION_TYPE=__stdcall', |
| 38 ], | 37 ], |
| 39 'msvs_cygwin_shell': 0, | 38 'msvs_cygwin_shell': 0, |
| 40 'msvs_settings': { | 39 'msvs_settings': { |
| 41 'VCCLCompilerTool': { | 40 'VCCLCompilerTool': { |
| 42 'WarningLevel': '3', | 41 'WarningLevel': '3', |
| 43 'ProgramDataBaseFileName': '$(OutDir)\\$(ProjectName).pdb', | 42 'ProgramDataBaseFileName': '$(OutDir)\\$(ProjectName).pdb', |
| 44 'DebugInformationFormat': '3', | 43 'DebugInformationFormat': '3', |
| 45 'ExceptionHandling': '0', | 44 'ExceptionHandling': '0', |
| (...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 493 'xcode_settings': { | 492 'xcode_settings': { |
| 494 'SYMROOT': '<(DEPTH)/xcodebuild', | 493 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 495 }, | 494 }, |
| 496 } | 495 } |
| 497 | 496 |
| 498 # Local Variables: | 497 # Local Variables: |
| 499 # tab-width:2 | 498 # tab-width:2 |
| 500 # indent-tabs-mode:nil | 499 # indent-tabs-mode:nil |
| 501 # End: | 500 # End: |
| 502 # vim: set expandtab tabstop=2 shiftwidth=2: | 501 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |