| 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 14 matching lines...) Expand all Loading... |
| 25 'cflags':[ | 25 'cflags':[ |
| 26 # FIXME: This gets around a longjmp warning. See | 26 # FIXME: This gets around a longjmp warning. See |
| 27 # http://build.chromium.org/p/client.skia.compile/builders/Build-Ubuntu-
GCC-x86_64-Release-Trybot/builds/113/steps/build%20most/logs/stdio | 27 # http://build.chromium.org/p/client.skia.compile/builders/Build-Ubuntu-
GCC-x86_64-Release-Trybot/builds/113/steps/build%20most/logs/stdio |
| 28 '-Wno-clobbered -Wno-error', | 28 '-Wno-clobbered -Wno-error', |
| 29 ], | 29 ], |
| 30 'include_dirs': [ | 30 'include_dirs': [ |
| 31 '../include/codec', | 31 '../include/codec', |
| 32 '../include/private', | 32 '../include/private', |
| 33 '../src/codec', | 33 '../src/codec', |
| 34 '../src/core', | 34 '../src/core', |
| 35 '../src/utils', |
| 35 ], | 36 ], |
| 36 'sources': [ | 37 'sources': [ |
| 37 '../src/codec/SkAndroidCodec.cpp', | 38 '../src/codec/SkAndroidCodec.cpp', |
| 38 '../src/codec/SkBmpCodec.cpp', | 39 '../src/codec/SkBmpCodec.cpp', |
| 39 '../src/codec/SkBmpMaskCodec.cpp', | 40 '../src/codec/SkBmpMaskCodec.cpp', |
| 40 '../src/codec/SkBmpRLECodec.cpp', | 41 '../src/codec/SkBmpRLECodec.cpp', |
| 41 '../src/codec/SkBmpStandardCodec.cpp', | 42 '../src/codec/SkBmpStandardCodec.cpp', |
| 42 '../src/codec/SkCodec.cpp', | 43 '../src/codec/SkCodec.cpp', |
| 43 '../src/codec/SkCodec_libpng.cpp', | 44 '../src/codec/SkCodec_libpng.cpp', |
| 44 '../src/codec/SkGifCodec.cpp', | 45 '../src/codec/SkGifCodec.cpp', |
| (...skipping 14 matching lines...) Expand all Loading... |
| 59 'include_dirs': [ | 60 'include_dirs': [ |
| 60 '../include/codec', | 61 '../include/codec', |
| 61 ], | 62 ], |
| 62 }, | 63 }, |
| 63 'defines': [ | 64 'defines': [ |
| 64 'TURBO_HAS_SKIP', | 65 'TURBO_HAS_SKIP', |
| 65 ], | 66 ], |
| 66 }, | 67 }, |
| 67 ], | 68 ], |
| 68 } | 69 } |
| OLD | NEW |