Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(203)

Side by Side Diff: gyp/codec.gyp

Issue 1022673011: Creating a new wrapper for gif decoder (Closed) Base URL: https://skia.googlesource.com/skia.git@ico-real
Patch Set: Adding gif functionality to SkCodec Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 'libpng.gyp:libpng', 16 'libpng.gyp:libpng',
17 ], 17 ],
18 'include_dirs': [ 18 'include_dirs': [
19 '../include/codec', 19 '../include/codec',
20 '../src/codec', 20 '../src/codec',
21 '../src/core', 21 '../src/core',
22 ], 22 ],
23 'sources': [ 23 'sources': [
24 '../src/codec/SkCodec.cpp', 24 '../src/codec/SkCodec.cpp',
25 '../src/codec/SkCodec_libbmp.cpp', 25 '../src/codec/SkCodec_libbmp.cpp',
26 '../src/codec/SkCodec_libgif.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',
29 '../src/codec/SkGifInterlaceIter.cpp',
28 '../src/codec/SkMaskSwizzler.cpp', 30 '../src/codec/SkMaskSwizzler.cpp',
29 '../src/codec/SkMasks.cpp', 31 '../src/codec/SkMasks.cpp',
30 '../src/codec/SkSwizzler.cpp', 32 '../src/codec/SkSwizzler.cpp',
31 ], 33 ],
32 'direct_dependent_settings': { 34 'direct_dependent_settings': {
33 'include_dirs': [ 35 'include_dirs': [
34 '../include/codec', 36 '../include/codec',
35 ], 37 ],
36 }, 38 },
37 }, 39 },
38 ], 40 ],
39 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698