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 26 matching lines...) Expand all Loading... | |
37 '../src/codec/SkCodec_libgif.cpp', | 37 '../src/codec/SkCodec_libgif.cpp', |
38 '../src/codec/SkCodec_libico.cpp', | 38 '../src/codec/SkCodec_libico.cpp', |
39 '../src/codec/SkCodec_libpng.cpp', | 39 '../src/codec/SkCodec_libpng.cpp', |
40 '../src/codec/SkCodec_wbmp.cpp', | 40 '../src/codec/SkCodec_wbmp.cpp', |
41 '../src/codec/SkGifInterlaceIter.cpp', | 41 '../src/codec/SkGifInterlaceIter.cpp', |
42 '../src/codec/SkJpegCodec.cpp', | 42 '../src/codec/SkJpegCodec.cpp', |
43 '../src/codec/SkJpegDecoderMgr.cpp', | 43 '../src/codec/SkJpegDecoderMgr.cpp', |
44 '../src/codec/SkJpegUtility_codec.cpp', | 44 '../src/codec/SkJpegUtility_codec.cpp', |
45 '../src/codec/SkMaskSwizzler.cpp', | 45 '../src/codec/SkMaskSwizzler.cpp', |
46 '../src/codec/SkMasks.cpp', | 46 '../src/codec/SkMasks.cpp', |
47 '../src/codec/SkScaledCodec.cpp', | |
47 '../src/codec/SkScanlineDecoder.cpp', | 48 '../src/codec/SkScanlineDecoder.cpp', |
48 '../src/codec/SkSwizzler.cpp', | 49 '../src/codec/SkSwizzler.cpp', |
49 '../src/codec/SkWebpCodec.cpp', | 50 '../src/codec/SkWebpCodec.cpp' |
scroggo
2015/08/06 15:09:10
nit: typically we keep this comma here, so we can
emmaleer
2015/08/06 18:59:52
Acknowledged.
| |
50 ], | 51 ], |
51 'direct_dependent_settings': { | 52 'direct_dependent_settings': { |
52 'include_dirs': [ | 53 'include_dirs': [ |
53 '../include/codec', | 54 '../include/codec', |
54 ], | 55 ], |
55 }, | 56 }, |
56 'conditions': [ | 57 'conditions': [ |
57 [ 'skia_android_framework == 1', | 58 [ 'skia_android_framework == 1', |
58 { | 59 { |
59 # TODO(djsollen): this is a temporary dependency until we can update | 60 # TODO(djsollen): this is a temporary dependency until we can update |
(...skipping 20 matching lines...) Expand all Loading... | |
80 ], | 81 ], |
81 'cflags': [ | 82 'cflags': [ |
82 '-DTURBO_HAS_SKIP', | 83 '-DTURBO_HAS_SKIP', |
83 ], | 84 ], |
84 } | 85 } |
85 ] | 86 ] |
86 ] | 87 ] |
87 }, | 88 }, |
88 ], | 89 ], |
89 } | 90 } |
OLD | NEW |