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. |
11 { | 11 { |
12 'targets': [ | 12 'targets': [ |
13 { | 13 { |
14 'target_name': 'codec', | 14 'target_name': 'codec', |
15 'product_name': 'skia_codec', | 15 'product_name': 'skia_codec', |
16 'type': 'static_library', | 16 'type': 'static_library', |
17 'standalone_static_library': 1, | 17 'standalone_static_library': 1, |
18 'dependencies': [ | 18 'dependencies': [ |
19 'core.gyp:*', | 19 'core.gyp:*', |
20 'giflib.gyp:giflib', | 20 'giflib.gyp:giflib', |
| 21 'libjpeg.gyp:libjpeg', |
21 ], | 22 ], |
22 'cflags':[ | 23 'cflags':[ |
23 # FIXME: This gets around a longjmp warning. See | 24 # FIXME: This gets around a longjmp warning. See |
24 # http://build.chromium.org/p/client.skia.compile/builders/Build-Ubuntu-
GCC-x86_64-Release-Trybot/builds/113/steps/build%20most/logs/stdio | 25 # http://build.chromium.org/p/client.skia.compile/builders/Build-Ubuntu-
GCC-x86_64-Release-Trybot/builds/113/steps/build%20most/logs/stdio |
25 '-Wno-clobbered', | 26 '-Wno-clobbered', |
26 ], | 27 ], |
27 'include_dirs': [ | 28 'include_dirs': [ |
28 '../include/codec', | 29 '../include/codec', |
29 '../src/codec', | 30 '../src/codec', |
30 '../src/core', | 31 '../src/core', |
31 ], | 32 ], |
32 'sources': [ | 33 'sources': [ |
33 '../src/codec/SkCodec.cpp', | 34 '../src/codec/SkCodec.cpp', |
34 '../src/codec/SkCodec_libbmp.cpp', | 35 '../src/codec/SkCodec_libbmp.cpp', |
35 '../src/codec/SkCodec_libgif.cpp', | 36 '../src/codec/SkCodec_libgif.cpp', |
36 '../src/codec/SkCodec_libico.cpp', | 37 '../src/codec/SkCodec_libico.cpp', |
37 '../src/codec/SkCodec_libpng.cpp', | 38 '../src/codec/SkCodec_libpng.cpp', |
38 '../src/codec/SkCodec_wbmp.cpp', | 39 '../src/codec/SkCodec_wbmp.cpp', |
39 '../src/codec/SkGifInterlaceIter.cpp', | 40 '../src/codec/SkGifInterlaceIter.cpp', |
| 41 '../src/codec/SkJpegCodec.cpp', |
| 42 '../src/codec/SkJpegDecoderMgr.cpp', |
| 43 '../src/codec/SkJpegUtility.cpp', |
40 '../src/codec/SkMaskSwizzler.cpp', | 44 '../src/codec/SkMaskSwizzler.cpp', |
41 '../src/codec/SkMasks.cpp', | 45 '../src/codec/SkMasks.cpp', |
42 '../src/codec/SkSwizzler.cpp', | 46 '../src/codec/SkSwizzler.cpp', |
43 ], | 47 ], |
44 'direct_dependent_settings': { | 48 'direct_dependent_settings': { |
45 'include_dirs': [ | 49 'include_dirs': [ |
46 '../include/codec', | 50 '../include/codec', |
47 ], | 51 ], |
48 }, | 52 }, |
49 'conditions': [ | 53 'conditions': [ |
50 [ 'skia_android_framework == 1', | 54 [ 'skia_android_framework == 1', |
51 { | 55 { |
52 # TODO(djsollen): this is a temporary dependency until we can update | 56 # TODO(djsollen): this is a temporary dependency until we can update |
53 # the android framework to a more recent version of libpng. | 57 # the android framework to a more recent version of libpng. |
54 'dependencies': [ | 58 'dependencies': [ |
55 'libpng.gyp:libpng', | 59 'libpng.gyp:libpng', |
56 ], | 60 ], |
57 }, { # !skia_android_framework | 61 }, { # !skia_android_framework |
58 'dependencies': [ | 62 'dependencies': [ |
59 'libpng.gyp:libpng_static', | 63 'libpng.gyp:libpng_static', |
60 ], | 64 ], |
61 } | 65 } |
62 ] | 66 ] |
63 ] | 67 ] |
64 }, | 68 }, |
65 ], | 69 ], |
66 } | 70 } |
OLD | NEW |