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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 '../src/codec/SkPngCodec.cpp', | 51 '../src/codec/SkPngCodec.cpp', |
52 '../src/codec/SkPngFilters.cpp', | 52 '../src/codec/SkPngFilters.cpp', |
53 '../src/codec/SkSampler.cpp', | 53 '../src/codec/SkSampler.cpp', |
54 '../src/codec/SkSampledCodec.cpp', | 54 '../src/codec/SkSampledCodec.cpp', |
55 '../src/codec/SkSwizzler.cpp', | 55 '../src/codec/SkSwizzler.cpp', |
56 '../src/codec/SkWbmpCodec.cpp', | 56 '../src/codec/SkWbmpCodec.cpp', |
57 '../src/codec/SkWebpAdapterCodec.cpp', | 57 '../src/codec/SkWebpAdapterCodec.cpp', |
58 '../src/codec/SkWebpCodec.cpp', | 58 '../src/codec/SkWebpCodec.cpp', |
59 | 59 |
60 '../src/codec/SkCodecImageGenerator.cpp', | 60 '../src/codec/SkCodecImageGenerator.cpp', |
61 '../src/ports/SkImageGenerator_skia.cpp', | |
62 ], | 61 ], |
63 'direct_dependent_settings': { | 62 'direct_dependent_settings': { |
64 'include_dirs': [ | 63 'include_dirs': [ |
65 '../include/codec', | 64 '../include/codec', |
66 ], | 65 ], |
67 }, | 66 }, |
68 'defines': [ | 67 'defines': [ |
69 'TURBO_HAS_SKIP', | 68 'TURBO_HAS_SKIP', |
70 ], | 69 ], |
71 'conditions': [ | 70 'conditions': [ |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 ['skia_os == "ios" or skia_os == "mac"', { | 120 ['skia_os == "ios" or skia_os == "mac"', { |
122 'xcode_settings': { | 121 'xcode_settings': { |
123 'OTHER_CFLAGS': ['-fexceptions'], | 122 'OTHER_CFLAGS': ['-fexceptions'], |
124 'OTHER_CPLUSPLUSFLAGS': ['-fexceptions'], | 123 'OTHER_CPLUSPLUSFLAGS': ['-fexceptions'], |
125 }, | 124 }, |
126 }], | 125 }], |
127 ], | 126 ], |
128 }, | 127 }, |
129 ], | 128 ], |
130 } | 129 } |
OLD | NEW |