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 codec project. | 6 # GYP file for codec project. |
7 { | 7 { |
8 'targets': [ | 8 'targets': [ |
9 { | 9 { |
10 'target_name': 'codec', | 10 'target_name': 'codec', |
11 'product_name': 'skia_codec', | 11 'product_name': 'skia_codec', |
12 'type': 'static_library', | 12 'type': 'static_library', |
13 'standalone_static_library': 1, | 13 'standalone_static_library': 1, |
14 'dependencies': [ | 14 'dependencies': [ |
15 'core.gyp:*', | 15 'core.gyp:*', |
16 'giflib.gyp:giflib', | |
djsollen
2015/03/26 19:51:05
no need to add it here until you have code in this
msarett
2015/03/26 21:06:23
True, I will move this to my gif CL.
| |
16 'libpng.gyp:libpng', | 17 'libpng.gyp:libpng', |
17 ], | 18 ], |
18 'include_dirs': [ | 19 'include_dirs': [ |
19 '../include/codec', | 20 '../include/codec', |
20 '../src/codec', | 21 '../src/codec', |
21 '../src/core', | 22 '../src/core', |
22 ], | 23 ], |
23 'sources': [ | 24 'sources': [ |
24 '../src/codec/SkCodec.cpp', | 25 '../src/codec/SkCodec.cpp', |
25 '../src/codec/SkCodec_libbmp.cpp', | 26 '../src/codec/SkCodec_libbmp.cpp', |
26 '../src/codec/SkCodec_libico.cpp', | 27 '../src/codec/SkCodec_libico.cpp', |
27 '../src/codec/SkCodec_libpng.cpp', | 28 '../src/codec/SkCodec_libpng.cpp', |
28 '../src/codec/SkMaskSwizzler.cpp', | 29 '../src/codec/SkMaskSwizzler.cpp', |
29 '../src/codec/SkMasks.cpp', | 30 '../src/codec/SkMasks.cpp', |
30 '../src/codec/SkSwizzler.cpp', | 31 '../src/codec/SkSwizzler.cpp', |
31 ], | 32 ], |
32 'direct_dependent_settings': { | 33 'direct_dependent_settings': { |
33 'include_dirs': [ | 34 'include_dirs': [ |
34 '../include/codec', | 35 '../include/codec', |
35 ], | 36 ], |
36 }, | 37 }, |
37 }, | 38 }, |
38 ], | 39 ], |
39 } | 40 } |
OLD | NEW |