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

Side by Side Diff: gyp/codec.gyp

Issue 2344523002: Experimental: EXR
Patch Set: Now we have a decoder Created 4 years, 3 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 | « no previous file | gyp/images.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # 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 10 matching lines...) Expand all
21 'libjpeg-turbo-selector.gyp:libjpeg-turbo-selector', 21 'libjpeg-turbo-selector.gyp:libjpeg-turbo-selector',
22 'libpng.gyp:libpng', 22 'libpng.gyp:libpng',
23 'libwebp.gyp:libwebp', 23 'libwebp.gyp:libwebp',
24 ], 24 ],
25 'include_dirs': [ 25 'include_dirs': [
26 '../include/codec', 26 '../include/codec',
27 '../include/private', 27 '../include/private',
28 '../src/codec', 28 '../src/codec',
29 '../src/core', 29 '../src/core',
30 '../src/utils', 30 '../src/utils',
31 '../third_party/mytinyexr',
31 ], 32 ],
32 'sources': [ 33 'sources': [
33 '../src/codec/SkAndroidCodec.cpp', 34 '../src/codec/SkAndroidCodec.cpp',
34 '../src/codec/SkBmpCodec.cpp', 35 '../src/codec/SkBmpCodec.cpp',
35 '../src/codec/SkBmpMaskCodec.cpp', 36 '../src/codec/SkBmpMaskCodec.cpp',
36 '../src/codec/SkBmpRLECodec.cpp', 37 '../src/codec/SkBmpRLECodec.cpp',
37 '../src/codec/SkBmpStandardCodec.cpp', 38 '../src/codec/SkBmpStandardCodec.cpp',
38 '../src/codec/SkCodec.cpp', 39 '../src/codec/SkCodec.cpp',
39 '../src/codec/SkGifCodec.cpp', 40 '../src/codec/SkGifCodec.cpp',
41 '../src/codec/SkExrCodec.cpp',
40 '../src/codec/SkIcoCodec.cpp', 42 '../src/codec/SkIcoCodec.cpp',
41 '../src/codec/SkJpegCodec.cpp', 43 '../src/codec/SkJpegCodec.cpp',
42 '../src/codec/SkJpegDecoderMgr.cpp', 44 '../src/codec/SkJpegDecoderMgr.cpp',
43 '../src/codec/SkJpegUtility.cpp', 45 '../src/codec/SkJpegUtility.cpp',
44 '../src/codec/SkMaskSwizzler.cpp', 46 '../src/codec/SkMaskSwizzler.cpp',
45 '../src/codec/SkMasks.cpp', 47 '../src/codec/SkMasks.cpp',
46 '../src/codec/SkPngCodec.cpp', 48 '../src/codec/SkPngCodec.cpp',
47 '../src/codec/SkSampler.cpp', 49 '../src/codec/SkSampler.cpp',
48 '../src/codec/SkSampledCodec.cpp', 50 '../src/codec/SkSampledCodec.cpp',
49 '../src/codec/SkSwizzler.cpp', 51 '../src/codec/SkSwizzler.cpp',
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 ['skia_os == "ios" or skia_os == "mac"', { 114 ['skia_os == "ios" or skia_os == "mac"', {
113 'xcode_settings': { 115 'xcode_settings': {
114 'OTHER_CFLAGS': ['-fexceptions'], 116 'OTHER_CFLAGS': ['-fexceptions'],
115 'OTHER_CPLUSPLUSFLAGS': ['-fexceptions'], 117 'OTHER_CPLUSPLUSFLAGS': ['-fexceptions'],
116 }, 118 },
117 }], 119 }],
118 ], 120 ],
119 }, 121 },
120 ], 122 ],
121 } 123 }
OLDNEW
« no previous file with comments | « no previous file | gyp/images.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698