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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 '../src/codec/SkPngCodec.cpp', | 50 '../src/codec/SkPngCodec.cpp', |
51 '../src/codec/SkPngFilters.cpp', | 51 '../src/codec/SkPngFilters.cpp', |
52 '../src/codec/SkSampler.cpp', | 52 '../src/codec/SkSampler.cpp', |
53 '../src/codec/SkSampledCodec.cpp', | 53 '../src/codec/SkSampledCodec.cpp', |
54 '../src/codec/SkSwizzler.cpp', | 54 '../src/codec/SkSwizzler.cpp', |
55 '../src/codec/SkWbmpCodec.cpp', | 55 '../src/codec/SkWbmpCodec.cpp', |
56 '../src/codec/SkWebpAdapterCodec.cpp', | 56 '../src/codec/SkWebpAdapterCodec.cpp', |
57 '../src/codec/SkWebpCodec.cpp', | 57 '../src/codec/SkWebpCodec.cpp', |
58 | 58 |
59 '../src/codec/SkCodecImageGenerator.cpp', | 59 '../src/codec/SkCodecImageGenerator.cpp', |
| 60 '../src/ports/SkImageGenerator_skia.cpp', |
60 ], | 61 ], |
61 'direct_dependent_settings': { | 62 'direct_dependent_settings': { |
62 'include_dirs': [ | 63 'include_dirs': [ |
63 '../include/codec', | 64 '../include/codec', |
64 ], | 65 ], |
65 }, | 66 }, |
66 'defines': [ | 67 'defines': [ |
67 # Turn on all of the codecs, since we know that we have all of the | 68 # Turn on all of the codecs, since we know that we have all of the |
68 # necessary dependencies. Clients that are missing some of the | 69 # necessary dependencies. Clients that are missing some of the |
69 # required decoding libraries may choose to turn the codecs on or | 70 # required decoding libraries may choose to turn the codecs on or |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 ['skia_os == "ios" or skia_os == "mac"', { | 132 ['skia_os == "ios" or skia_os == "mac"', { |
132 'xcode_settings': { | 133 'xcode_settings': { |
133 'OTHER_CFLAGS': ['-fexceptions'], | 134 'OTHER_CFLAGS': ['-fexceptions'], |
134 'OTHER_CPLUSPLUSFLAGS': ['-fexceptions'], | 135 'OTHER_CPLUSPLUSFLAGS': ['-fexceptions'], |
135 }, | 136 }, |
136 }], | 137 }], |
137 ], | 138 ], |
138 }, | 139 }, |
139 ], | 140 ], |
140 } | 141 } |
OLD | NEW |