| 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 | 5 |
| 6 # GYP file for images project. | 6 # GYP file for images project. |
| 7 { | 7 { |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 'target_name': 'images', | 10 'target_name': 'images', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 'utils.gyp:utils', | 22 'utils.gyp:utils', |
| 23 ], | 23 ], |
| 24 'include_dirs': [ | 24 'include_dirs': [ |
| 25 '../include/images', | 25 '../include/images', |
| 26 '../include/private', | 26 '../include/private', |
| 27 '../src/lazy', | 27 '../src/lazy', |
| 28 # for access to SkErrorInternals.h | 28 # for access to SkErrorInternals.h |
| 29 '../src/core/', | 29 '../src/core/', |
| 30 # for access to SkImagePriv.h | 30 # for access to SkImagePriv.h |
| 31 '../src/image/', | 31 '../src/image/', |
| 32 '../third_party/mytinyexr', |
| 33 #'../third_party/mytinyexr/deps/ZFP/inc', |
| 32 ], | 34 ], |
| 33 'sources': [ | 35 'sources': [ |
| 34 '../include/images/SkForceLinking.h', | 36 '../include/images/SkForceLinking.h', |
| 35 '../include/images/SkMovie.h', | 37 '../include/images/SkMovie.h', |
| 36 | 38 |
| 37 '../src/images/SkForceLinking.cpp', | 39 '../src/images/SkForceLinking.cpp', |
| 38 '../src/images/SkMovie_FactoryDefault.cpp', | 40 '../src/images/SkMovie_FactoryDefault.cpp', |
| 39 | 41 |
| 40 # If encoders are added/removed to/from (all/individual) | 42 # If encoders are added/removed to/from (all/individual) |
| 41 # platform(s), be sure to update SkForceLinking.cpp | 43 # platform(s), be sure to update SkForceLinking.cpp |
| 42 # so the right decoders will be forced to link. | 44 # so the right decoders will be forced to link. |
| 43 | 45 |
| 44 '../src/images/SkKTXImageEncoder.cpp', | 46 '../src/images/SkKTXImageEncoder.cpp', |
| 47 '../src/images/SkEXRImageEncoder.cpp', |
| 45 '../src/images/SkWEBPImageEncoder.cpp', | 48 '../src/images/SkWEBPImageEncoder.cpp', |
| 46 '../src/images/SkJPEGImageEncoder.cpp', | 49 '../src/images/SkJPEGImageEncoder.cpp', |
| 47 '../src/images/SkPNGImageEncoder.cpp', | 50 '../src/images/SkPNGImageEncoder.cpp', |
| 48 | 51 |
| 49 '../src/images/SkImageEncoder.cpp', | 52 '../src/images/SkImageEncoder.cpp', |
| 50 '../src/images/SkImageEncoder_Factory.cpp', | 53 '../src/images/SkImageEncoder_Factory.cpp', |
| 51 '../src/images/SkJPEGWriteUtility.cpp', | 54 '../src/images/SkJPEGWriteUtility.cpp', |
| 52 '../src/images/SkMovie.cpp', | 55 '../src/images/SkMovie.cpp', |
| 53 '../src/images/SkGIFMovie.cpp', | 56 '../src/images/SkGIFMovie.cpp', |
| 54 | 57 |
| 55 '../src/ports/SkImageEncoder_CG.cpp', | 58 '../src/ports/SkImageEncoder_CG.cpp', |
| 56 '../src/ports/SkImageEncoder_WIC.cpp', | 59 '../src/ports/SkImageEncoder_WIC.cpp', |
| 60 |
| 61 #'../third_party/tinyexr/deps/ZFP/src/bitstream.c', |
| 62 #'../third_party/tinyexr/deps/ZFP/src/decode1d.c', |
| 63 #'../third_party/tinyexr/deps/ZFP/src/decode1f.c', |
| 64 #'../third_party/tinyexr/deps/ZFP/src/decode2d.c', |
| 65 #'../third_party/tinyexr/deps/ZFP/src/decode2f.c', |
| 66 #'../third_party/tinyexr/deps/ZFP/src/decode3d.c', |
| 67 #'../third_party/tinyexr/deps/ZFP/src/decode3f.c', |
| 68 #'../third_party/tinyexr/deps/ZFP/src/encode1d.c', |
| 69 #'../third_party/tinyexr/deps/ZFP/src/encode1f.c', |
| 70 #'../third_party/tinyexr/deps/ZFP/src/encode2d.c', |
| 71 #'../third_party/tinyexr/deps/ZFP/src/encode2f.c', |
| 72 #'../third_party/tinyexr/deps/ZFP/src/encode3d.c', |
| 73 #'../third_party/tinyexr/deps/ZFP/src/encode3f.c', |
| 74 #'../third_party/tinyexr/deps/ZFP/src/zfp.c', |
| 75 ], |
| 76 'cflags': [ |
| 77 '-w', |
| 57 ], | 78 ], |
| 58 'conditions': [ | 79 'conditions': [ |
| 59 [ 'skia_os == "win"', { | 80 [ 'skia_os == "win"', { |
| 60 'sources!': [ | 81 'sources!': [ |
| 61 '../src/images/SkGIFMovie.cpp', | 82 '../src/images/SkGIFMovie.cpp', |
| 62 ], | 83 ], |
| 63 'dependencies!': [ | 84 'dependencies!': [ |
| 64 'giflib.gyp:giflib' | 85 'giflib.gyp:giflib' |
| 65 ], | 86 ], |
| 66 'link_settings': { | 87 'link_settings': { |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 }], | 127 }], |
| 107 ], | 128 ], |
| 108 'direct_dependent_settings': { | 129 'direct_dependent_settings': { |
| 109 'include_dirs': [ | 130 'include_dirs': [ |
| 110 '../include/images', | 131 '../include/images', |
| 111 ], | 132 ], |
| 112 }, | 133 }, |
| 113 }, | 134 }, |
| 114 ], | 135 ], |
| 115 } | 136 } |
| OLD | NEW |