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

Side by Side Diff: gyp/codec.gyp

Issue 930283002: Add SkCodec, including PNG implementation. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Make SkPngCodec work on Mac! 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
(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 'libjpeg.gyp:*',
12 'etc1.gyp:libetc1',
13 'ktx.gyp:libSkKTX',
14 'libwebp.gyp:libwebp',
15 'utils.gyp:utils',
16 ],
17 'include_dirs': [
18 '../include/codec',
19 '../src/codec',
20 ],
21 'sources': [
22 '../src/codec/SkCodec.cpp',
23 '../src/codec/SkCodec_libpng.cpp',
24 '../src/codec/SkSwizzler.cpp',
25 ],
26 'conditions': [
27 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "android", "mac ", "ios"]', {
djsollen 2015/02/25 20:52:15 I think you can remove this condition and the one
scroggo 2015/02/25 21:33:52 Done. This explains my Windows trybot failure, I t
28 'dependencies': [
29 'libpng.gyp:libpng',
djsollen 2015/02/25 20:52:15 this gyp file still uses the android_deps.gyp inte
scroggo 2015/02/25 21:33:52 I set it in common_variables.
30 ],
31 }],
32 [ 'skia_os == "chromeos"', {
33 'dependencies': [
34 'libpng.gyp:libpng',
35 ],
36 }],
37 [ 'skia_os == "ios"', {
38 'include_dirs': [
39 '../include/utils/mac',
djsollen 2015/02/25 20:52:15 is this needed?
scroggo 2015/02/25 21:33:52 No. Removed.
40 ],
41 }],
42 ],
43 'direct_dependent_settings': {
44 'include_dirs': [
45 '../include/codec',
46 ],
47 },
48 },
49 ],
50 }
OLDNEW
« DEPS ('K') | « dm/DMSrcSink.cpp ('k') | gyp/common_variables.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698