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

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: Check in prebuilt file directly 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
« no previous file with comments | « dm/DMSrcSink.cpp ('k') | gyp/common_variables.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 '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 }
OLDNEW
« no previous file with comments | « dm/DMSrcSink.cpp ('k') | gyp/common_variables.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698