| OLD | NEW |
| 1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 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 # Copyright 2015 Google Inc. | 5 # Copyright 2015 Google Inc. |
| 6 # | 6 # |
| 7 # Use of this source code is governed by a BSD-style license that can be | 7 # Use of this source code is governed by a BSD-style license that can be |
| 8 # found in the LICENSE file. | 8 # found in the LICENSE file. |
| 9 | 9 |
| 10 # GYP file for codec project. | 10 # GYP file for codec project. |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 | 59 |
| 60 '../src/codec/SkCodecImageGenerator.cpp', | 60 '../src/codec/SkCodecImageGenerator.cpp', |
| 61 ], | 61 ], |
| 62 'direct_dependent_settings': { | 62 'direct_dependent_settings': { |
| 63 'include_dirs': [ | 63 'include_dirs': [ |
| 64 '../include/codec', | 64 '../include/codec', |
| 65 ], | 65 ], |
| 66 }, | 66 }, |
| 67 'defines': [ | 67 'defines': [ |
| 68 'TURBO_HAS_SKIP', | 68 'TURBO_HAS_SKIP', |
| 69 'TURBO_HAS_565,' |
| 69 ], | 70 ], |
| 70 'conditions': [ | 71 'conditions': [ |
| 71 ['skia_codec_decodes_raw', { | 72 ['skia_codec_decodes_raw', { |
| 72 'dependencies': [ | 73 'dependencies': [ |
| 73 'raw_codec', | 74 'raw_codec', |
| 74 ], | 75 ], |
| 75 },], | 76 },], |
| 76 ], | 77 ], |
| 77 }, { | 78 }, { |
| 78 # RAW codec needs exceptions. Due to that, it is a separate target. Its us
age can be | 79 # RAW codec needs exceptions. Due to that, it is a separate target. Its us
age can be |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 ['skia_os == "ios" or skia_os == "mac"', { | 121 ['skia_os == "ios" or skia_os == "mac"', { |
| 121 'xcode_settings': { | 122 'xcode_settings': { |
| 122 'OTHER_CFLAGS': ['-fexceptions'], | 123 'OTHER_CFLAGS': ['-fexceptions'], |
| 123 'OTHER_CPLUSPLUSFLAGS': ['-fexceptions'], | 124 'OTHER_CPLUSPLUSFLAGS': ['-fexceptions'], |
| 124 }, | 125 }, |
| 125 }], | 126 }], |
| 126 ], | 127 ], |
| 127 }, | 128 }, |
| 128 ], | 129 ], |
| 129 } | 130 } |
| OLD | NEW |