| OLD | NEW |
| (Empty) |
| 1 # GYP file for codec project. | |
| 2 { | |
| 3 'targets': [ | |
| 4 { | |
| 5 'target_name': 'codec', | |
| 6 'product_name': 'skia_codec', | |
| 7 'type': 'static_library', | |
| 8 'standalone_static_library': 1, | |
| 9 'dependencies': [ | |
| 10 'core.gyp:*', | |
| 11 'libpng.gyp:libpng', | |
| 12 ], | |
| 13 'include_dirs': [ | |
| 14 '../include/codec', | |
| 15 '../src/codec', | |
| 16 ], | |
| 17 'sources': [ | |
| 18 '../src/codec/SkCodec.cpp', | |
| 19 '../src/codec/SkCodec_libpng.cpp', | |
| 20 '../src/codec/SkSwizzler.cpp', | |
| 21 ], | |
| 22 'direct_dependent_settings': { | |
| 23 'include_dirs': [ | |
| 24 '../include/codec', | |
| 25 ], | |
| 26 }, | |
| 27 }, | |
| 28 ], | |
| 29 } | |
| OLD | NEW |