| 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-turbo.gyp:libjpeg-turbo', | 21 'libjpeg.gyp:libjpeg', |
| 22 'libwebp.gyp:libwebp', | 22 'libwebp.gyp:libwebp', |
| 23 ], | 23 ], |
| 24 'export_dependent_settings': [ | |
| 25 'libjpeg-turbo.gyp:libjpeg-turbo', | |
| 26 ], | |
| 27 'cflags':[ | 24 'cflags':[ |
| 28 # FIXME: This gets around a longjmp warning. See | 25 # FIXME: This gets around a longjmp warning. See |
| 29 # http://build.chromium.org/p/client.skia.compile/builders/Build-Ubuntu-
GCC-x86_64-Release-Trybot/builds/113/steps/build%20most/logs/stdio | 26 # http://build.chromium.org/p/client.skia.compile/builders/Build-Ubuntu-
GCC-x86_64-Release-Trybot/builds/113/steps/build%20most/logs/stdio |
| 30 '-Wno-clobbered', | 27 '-Wno-clobbered', |
| 31 ], | 28 ], |
| 32 'include_dirs': [ | 29 'include_dirs': [ |
| 33 '../include/codec', | 30 '../include/codec', |
| 34 '../src/codec', | 31 '../src/codec', |
| 35 '../src/core', | 32 '../src/core', |
| 36 ], | 33 ], |
| (...skipping 29 matching lines...) Expand all Loading... |
| 66 }, { # !skia_android_framework | 63 }, { # !skia_android_framework |
| 67 'dependencies': [ | 64 'dependencies': [ |
| 68 'libpng.gyp:libpng_static', | 65 'libpng.gyp:libpng_static', |
| 69 ], | 66 ], |
| 70 } | 67 } |
| 71 ] | 68 ] |
| 72 ] | 69 ] |
| 73 }, | 70 }, |
| 74 ], | 71 ], |
| 75 } | 72 } |
| OLD | NEW |