Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 PDFium Authors. All rights reserved. | 1 # Copyright 2014 PDFium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'target_defaults': { | 6 'target_defaults': { |
| 7 'defines': [ | 7 'defines': [ |
| 8 'OPJ_STATIC', | 8 'OPJ_STATIC', |
| 9 'PNG_PREFIX', | |
|
Lei Zhang
2015/10/12 22:17:01
Do these need to be added to third_party/BUILD.gn?
| |
| 10 'PNGPREFIX_H', | |
| 11 'PNG_USE_READ_MACROS', | |
| 9 '_CRT_SECURE_NO_WARNINGS', | 12 '_CRT_SECURE_NO_WARNINGS', |
| 10 ], | 13 ], |
| 11 'msvs_disabled_warnings': [ | 14 'msvs_disabled_warnings': [ |
| 12 4005, 4018, 4146, 4333, 4345, 4267 | 15 4005, 4018, 4146, 4333, 4345, 4267 |
| 13 ], | 16 ], |
| 14 }, | 17 }, |
| 15 'targets': [ | 18 'targets': [ |
| 16 { | 19 { |
| 17 'target_name': 'bigint', | 20 'target_name': 'bigint', |
| 18 'type': 'static_library', | 21 'type': 'static_library', |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 231 'libopenjpeg20/opj_clock.c', | 234 'libopenjpeg20/opj_clock.c', |
| 232 'libopenjpeg20/pi.c', | 235 'libopenjpeg20/pi.c', |
| 233 'libopenjpeg20/raw.c', | 236 'libopenjpeg20/raw.c', |
| 234 'libopenjpeg20/t1.c', | 237 'libopenjpeg20/t1.c', |
| 235 'libopenjpeg20/t2.c', | 238 'libopenjpeg20/t2.c', |
| 236 'libopenjpeg20/tcd.c', | 239 'libopenjpeg20/tcd.c', |
| 237 'libopenjpeg20/tgt.c', | 240 'libopenjpeg20/tgt.c', |
| 238 ], | 241 ], |
| 239 }, | 242 }, |
| 240 { | 243 { |
| 244 'target_name': 'fx_lpng', | |
| 245 'type': 'static_library', | |
| 246 'sources': [ | |
| 247 'lpng_v163/png.h', | |
|
Lei Zhang
2015/10/12 22:17:01
also sort
| |
| 248 'lpng_v163/png.c', | |
| 249 'lpng_v163/pngerror.c', | |
| 250 'lpng_v163/pngget.c', | |
| 251 'lpng_v163/pngmem.c', | |
| 252 'lpng_v163/pngpread.c', | |
| 253 'lpng_v163/pngread.c', | |
| 254 'lpng_v163/pngrio.c', | |
| 255 'lpng_v163/pngrtran.c', | |
| 256 'lpng_v163/pngrutil.c', | |
| 257 'lpng_v163/pngset.c', | |
| 258 'lpng_v163/pngtrans.c', | |
| 259 'lpng_v163/pngwio.c', | |
| 260 'lpng_v163/pngwrite.c', | |
| 261 'lpng_v163/pngwtran.c', | |
| 262 'lpng_v163/pngwutil.c', | |
| 263 ], | |
| 264 }, | |
| 265 { | |
| 266 'target_name': 'fx_tiff', | |
| 267 'type': 'static_library', | |
| 268 'sources': [ | |
| 269 'tiff_v403/tiffiop.h', | |
| 270 'tiff_v403/tif_aux.c', | |
| 271 'tiff_v403/tif_close.c', | |
| 272 'tiff_v403/tif_codec.c', | |
| 273 'tiff_v403/tif_color.c', | |
| 274 'tiff_v403/tif_compress.c', | |
| 275 'tiff_v403/tif_dir.c', | |
| 276 'tiff_v403/tif_dirinfo.c', | |
| 277 'tiff_v403/tif_dirread.c', | |
| 278 'tiff_v403/tif_dirwrite.c', | |
| 279 'tiff_v403/tif_dumpmode.c', | |
| 280 'tiff_v403/tif_error.c', | |
| 281 'tiff_v403/tif_extension.c', | |
| 282 'tiff_v403/tif_fax3.c', | |
| 283 'tiff_v403/tif_fax3sm.c', | |
| 284 'tiff_v403/tif_flush.c', | |
| 285 'tiff_v403/tif_getimage.c', | |
| 286 'tiff_v403/tif_jpeg.c', | |
| 287 'tiff_v403/tif_luv.c', | |
| 288 'tiff_v403/tif_lzw.c', | |
| 289 'tiff_v403/tif_next.c', | |
| 290 'tiff_v403/tif_ojpeg.c', | |
| 291 'tiff_v403/tif_open.c', | |
| 292 'tiff_v403/tif_packbits.c', | |
| 293 'tiff_v403/tif_pixarlog.c', | |
| 294 'tiff_v403/tif_predict.c', | |
| 295 'tiff_v403/tif_print.c', | |
| 296 'tiff_v403/tif_read.c', | |
| 297 'tiff_v403/tif_strip.c', | |
| 298 'tiff_v403/tif_swab.c', | |
| 299 'tiff_v403/tif_thunder.c', | |
| 300 'tiff_v403/tif_tile.c', | |
| 301 'tiff_v403/tif_version.c', | |
| 302 'tiff_v403/tif_warning.c', | |
| 303 'tiff_v403/tif_write.c', | |
| 304 'tiff_v403/tif_zip.c', | |
| 305 ], | |
| 306 }, | |
| 307 { | |
| 241 'target_name': 'fx_zlib', | 308 'target_name': 'fx_zlib', |
| 242 'type': 'static_library', | 309 'type': 'static_library', |
| 243 'sources': [ | 310 'sources': [ |
| 244 'zlib_v128/adler32.c', | 311 'zlib_v128/adler32.c', |
| 245 'zlib_v128/compress.c', | 312 'zlib_v128/compress.c', |
| 246 'zlib_v128/crc32.c', | 313 'zlib_v128/crc32.c', |
| 247 'zlib_v128/deflate.c', | 314 'zlib_v128/deflate.c', |
| 248 'zlib_v128/gzclose.c', | 315 'zlib_v128/gzclose.c', |
| 249 'zlib_v128/gzlib.c', | 316 'zlib_v128/gzlib.c', |
| 250 'zlib_v128/gzread.c', | 317 'zlib_v128/gzread.c', |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 268 'base/numerics/safe_conversions.h', | 335 'base/numerics/safe_conversions.h', |
| 269 'base/numerics/safe_conversions_impl.h', | 336 'base/numerics/safe_conversions_impl.h', |
| 270 'base/numerics/safe_math.h', | 337 'base/numerics/safe_math.h', |
| 271 'base/numerics/safe_math_impl.h', | 338 'base/numerics/safe_math_impl.h', |
| 272 'base/stl_util.h', | 339 'base/stl_util.h', |
| 273 'base/template_util.h', | 340 'base/template_util.h', |
| 274 ], | 341 ], |
| 275 }, | 342 }, |
| 276 ], | 343 ], |
| 277 } | 344 } |
| OLD | NEW |