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

Side by Side Diff: gyp/dng_sdk.gyp

Issue 1738913002: Enable RAW codec for Windows (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Black RAW codec tests for Win32 bots Created 4 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 | « gyp/common_variables.gypi ('k') | src/codec/SkRawCodec.cpp » ('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 2016 Google Inc. 1 # Copyright 2016 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 # The Adobe DNG SDK, an API for reading and writing DNG files. 5 # The Adobe DNG SDK, an API for reading and writing DNG files.
6 { 6 {
7 'variables': { 7 'variables': {
8 'other_cflags': [ 8 'other_cflags': [
9 '-DqDNGBigEndian=0', 9 '-DqDNGBigEndian=0',
10 '-DqDNGReportErrors=0', 10 '-DqDNGReportErrors=0',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 ['skia_os == "ios" or skia_os == "mac"', { 120 ['skia_os == "ios" or skia_os == "mac"', {
121 'xcode_settings': { 121 'xcode_settings': {
122 'OTHER_CFLAGS': [ '<@(other_cflags)' ], 122 'OTHER_CFLAGS': [ '<@(other_cflags)' ],
123 'OTHER_CPLUSPLUSFLAGS': [ '<@(other_cflags)' ], 123 'OTHER_CPLUSPLUSFLAGS': [ '<@(other_cflags)' ],
124 }, 124 },
125 }], 125 }],
126 ['skia_os == "win"', { 126 ['skia_os == "win"', {
127 'msvs_settings': { 127 'msvs_settings': {
128 'VCCLCompilerTool': { 128 'VCCLCompilerTool': {
129 'WarningLevel': '0', 129 'WarningLevel': '0',
130 'AdditionalOptions': ['/wd4189', ], 130 'AdditionalOptions': [
131 '/wd4189',
132 '/DqDNGBigEndian#0',
133 '/DqDNGReportErrors#0',
134 '/DqDNGThreadSafe#1',
135 '/DqDNGUseLibJPEG#1',
136 '/DqDNGUseXMP#0',
137 '/DqDNGValidate#0',
138 '/DqDNGValidateTarget#1',
139 ],
131 }, 140 },
132 }, 141 },
133 }], 142 }],
134 ['skia_os != "linux"', { 143 ['skia_os != "linux"', {
135 'sources': ['<@(headers)'], 144 'sources': ['<@(headers)'],
136 }], 145 }],
137 ], 146 ],
138 'dependencies': [ 147 'dependencies': [
139 'libjpeg-turbo-selector.gyp:libjpeg-turbo-selector', 148 'libjpeg-turbo-selector.gyp:libjpeg-turbo-selector',
140 'zlib.gyp:zlib', 149 'zlib.gyp:zlib',
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 '../third_party/externals/dng_sdk/source/dng_temperature.cpp', 218 '../third_party/externals/dng_sdk/source/dng_temperature.cpp',
210 '../third_party/externals/dng_sdk/source/dng_tile_iterator.cpp', 219 '../third_party/externals/dng_sdk/source/dng_tile_iterator.cpp',
211 '../third_party/externals/dng_sdk/source/dng_tone_curve.cpp', 220 '../third_party/externals/dng_sdk/source/dng_tone_curve.cpp',
212 '../third_party/externals/dng_sdk/source/dng_utils.cpp', 221 '../third_party/externals/dng_sdk/source/dng_utils.cpp',
213 '../third_party/externals/dng_sdk/source/dng_xy_coord.cpp', 222 '../third_party/externals/dng_sdk/source/dng_xy_coord.cpp',
214 '../third_party/externals/dng_sdk/source/dng_jpeg_memory_source.cpp', 223 '../third_party/externals/dng_sdk/source/dng_jpeg_memory_source.cpp',
215 '../third_party/externals/dng_sdk/source/dng_safe_arithmetic.cpp', 224 '../third_party/externals/dng_sdk/source/dng_safe_arithmetic.cpp',
216 ], 225 ],
217 }], 226 }],
218 } 227 }
OLDNEW
« no previous file with comments | « gyp/common_variables.gypi ('k') | src/codec/SkRawCodec.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698