| OLD | NEW |
| 1 # Copyright 2014 Google Inc. | 1 # Copyright 2014 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 { | 6 { |
| 7 'variables': { | 7 'variables': { |
| 8 'skia_warnings_as_errors': 0, | 8 'skia_warnings_as_errors': 0, |
| 9 }, | 9 }, |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 '-w', | 28 '-w', |
| 29 ], | 29 ], |
| 30 'xcode_settings': { | 30 'xcode_settings': { |
| 31 'WARNING_CFLAGS': [ | 31 'WARNING_CFLAGS': [ |
| 32 '-w' | 32 '-w' |
| 33 ], | 33 ], |
| 34 }, | 34 }, |
| 35 'msvs_settings': { | 35 'msvs_settings': { |
| 36 'VCCLCompilerTool': { | 36 'VCCLCompilerTool': { |
| 37 'AdditionalOptions': [ | 37 'AdditionalOptions': [ |
| 38 '/w', | 38 '/wd4996', |
| 39 '/wd4018', |
| 40 '/wd4267', |
| 39 ], | 41 ], |
| 40 }, | 42 }, |
| 41 }, | 43 }, |
| 42 'sources': [ | 44 'sources': [ |
| 43 '../third_party/externals/giflib/dgif_lib.c', | 45 '../third_party/externals/giflib/dgif_lib.c', |
| 44 '../third_party/externals/giflib/gifalloc.c', | 46 '../third_party/externals/giflib/gifalloc.c', |
| 45 '../third_party/externals/giflib/gif_err.c', | 47 '../third_party/externals/giflib/gif_err.c', |
| 46 ], | 48 ], |
| 47 'conditions' : [ | 49 'conditions' : [ |
| 48 [ 'skia_os == "win"', { | 50 [ 'skia_os == "win"', { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 62 'include_dirs': [ | 64 'include_dirs': [ |
| 63 'external/giflib', | 65 'external/giflib', |
| 64 ] | 66 ] |
| 65 } | 67 } |
| 66 } | 68 } |
| 67 ] | 69 ] |
| 68 ] | 70 ] |
| 69 } | 71 } |
| 70 ] | 72 ] |
| 71 } | 73 } |
| OLD | NEW |