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

Side by Side Diff: third_party/BUILD.gn

Issue 1392373004: Rename lpng and tiff to third_party/ (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: GN Created 5 years, 2 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
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 group("third_party") { 5 group("third_party") {
6 deps = [ 6 deps = [
7 ":bigint", 7 ":bigint",
8 ":freetype", 8 ":freetype",
9 ":pdfium_base", 9 ":pdfium_base",
10 ] 10 ]
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 "libopenjpeg20/opj_clock.c", 227 "libopenjpeg20/opj_clock.c",
228 "libopenjpeg20/pi.c", 228 "libopenjpeg20/pi.c",
229 "libopenjpeg20/raw.c", 229 "libopenjpeg20/raw.c",
230 "libopenjpeg20/t1.c", 230 "libopenjpeg20/t1.c",
231 "libopenjpeg20/t2.c", 231 "libopenjpeg20/t2.c",
232 "libopenjpeg20/tcd.c", 232 "libopenjpeg20/tcd.c",
233 "libopenjpeg20/tgt.c", 233 "libopenjpeg20/tgt.c",
234 ] 234 ]
235 } 235 }
236 236
237 source_set("fx_lpng") {
238 configs -= [ "//build/config/compiler:chromium_code" ]
239 configs += [
240 "//build/config/compiler:no_chromium_code",
241 "//third_party/pdfium:pdfium_config",
242 ]
243 sources = [
244 "lpng_v163/png.h",
Lei Zhang 2015/10/12 22:17:01 sort
245 "lpng_v163/png.c",
246 "lpng_v163/pngerror.c",
247 "lpng_v163/pngget.c",
248 "lpng_v163/pngmem.c",
249 "lpng_v163/pngpread.c",
250 "lpng_v163/pngread.c",
251 "lpng_v163/pngrio.c",
252 "lpng_v163/pngrtran.c",
253 "lpng_v163/pngrutil.c",
254 "lpng_v163/pngset.c",
255 "lpng_v163/pngtrans.c",
256 "lpng_v163/pngwio.c",
257 "lpng_v163/pngwrite.c",
258 "lpng_v163/pngwtran.c",
259 "lpng_v163/pngwutil.c",
260 ]
261 }
262
263 source_set("fx_tiff") {
264 configs -= [ "//build/config/compiler:chromium_code" ]
265 configs += [
266 "//build/config/compiler:no_chromium_code",
267 "//third_party/pdfium:pdfium_config",
268 ]
269 sources = [
270 "tiff_v403/tiffiop.h",
271 "tiff_v403/tif_aux.c",
272 "tiff_v403/tif_close.c",
273 "tiff_v403/tif_codec.c",
274 "tiff_v403/tif_color.c",
275 "tiff_v403/tif_compress.c",
276 "tiff_v403/tif_dir.c",
277 "tiff_v403/tif_dirinfo.c",
278 "tiff_v403/tif_dirread.c",
279 "tiff_v403/tif_dirwrite.c",
280 "tiff_v403/tif_dumpmode.c",
281 "tiff_v403/tif_error.c",
282 "tiff_v403/tif_extension.c",
283 "tiff_v403/tif_fax3.c",
284 "tiff_v403/tif_fax3sm.c",
285 "tiff_v403/tif_flush.c",
286 "tiff_v403/tif_getimage.c",
287 "tiff_v403/tif_jpeg.c",
288 "tiff_v403/tif_luv.c",
289 "tiff_v403/tif_lzw.c",
290 "tiff_v403/tif_next.c",
291 "tiff_v403/tif_ojpeg.c",
292 "tiff_v403/tif_open.c",
293 "tiff_v403/tif_packbits.c",
294 "tiff_v403/tif_pixarlog.c",
295 "tiff_v403/tif_predict.c",
296 "tiff_v403/tif_print.c",
297 "tiff_v403/tif_read.c",
298 "tiff_v403/tif_strip.c",
299 "tiff_v403/tif_swab.c",
300 "tiff_v403/tif_thunder.c",
301 "tiff_v403/tif_tile.c",
302 "tiff_v403/tif_version.c",
303 "tiff_v403/tif_warning.c",
304 "tiff_v403/tif_write.c",
305 "tiff_v403/tif_zip.c",
306 ]
307 }
308
237 source_set("fx_zlib") { 309 source_set("fx_zlib") {
238 configs -= [ "//build/config/compiler:chromium_code" ] 310 configs -= [ "//build/config/compiler:chromium_code" ]
239 configs += [ 311 configs += [
240 "//build/config/compiler:no_chromium_code", 312 "//build/config/compiler:no_chromium_code",
241 "//third_party/pdfium:pdfium_config", 313 "//third_party/pdfium:pdfium_config",
242 ] 314 ]
243 sources = [ 315 sources = [
244 "zlib_v128/adler32.c", 316 "zlib_v128/adler32.c",
245 "zlib_v128/compress.c", 317 "zlib_v128/compress.c",
246 "zlib_v128/crc32.c", 318 "zlib_v128/crc32.c",
(...skipping 23 matching lines...) Expand all
270 "base/macros.h", 342 "base/macros.h",
271 "base/nonstd_unique_ptr.h", 343 "base/nonstd_unique_ptr.h",
272 "base/numerics/safe_conversions.h", 344 "base/numerics/safe_conversions.h",
273 "base/numerics/safe_conversions_impl.h", 345 "base/numerics/safe_conversions_impl.h",
274 "base/numerics/safe_math.h", 346 "base/numerics/safe_math.h",
275 "base/numerics/safe_math_impl.h", 347 "base/numerics/safe_math_impl.h",
276 "base/stl_util.h", 348 "base/stl_util.h",
277 "base/template_util.h", 349 "base/template_util.h",
278 ] 350 ]
279 } 351 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698