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

Side by Side Diff: third_party/third_party.gyp

Issue 1810063002: Fix windows pdfium_use_skia build. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: 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 | « skia/skia_common.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 { 5 {
6 'variables': { 6 'variables': {
7 'pdf_enable_xfa%': 0, # Set to 1 by standalone.gypi in standalone builds. 7 'pdf_enable_xfa%': 0, # Set to 1 by standalone.gypi in standalone builds.
8 }, 8 },
9 'target_defaults': { 9 'target_defaults': {
10 'defines': [ 10 'defines': [
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 'zlib_v128/uncompr.c', 320 'zlib_v128/uncompr.c',
321 'zlib_v128/zutil.c', 321 'zlib_v128/zutil.c',
322 ], 322 ],
323 'conditions': [ 323 'conditions': [
324 ['os_posix==1', { 324 ['os_posix==1', {
325 'cflags': [ 325 'cflags': [
326 # TODO(dsinclair): Remove if fixed upstream. https://crbug.com/50771 2 326 # TODO(dsinclair): Remove if fixed upstream. https://crbug.com/50771 2
327 '-Wno-shift-negative-value', 327 '-Wno-shift-negative-value',
328 ], 328 ],
329 }], 329 }],
330 ['OS == "win"', {
331 'direct_dependent_settings': {
332 'include_dirs': [
333 'zlib_v128',
334 ],
335 }
336 }],
330 ], 337 ],
331 'variables': { 338 'variables': {
332 'clang_warning_flags': [ 339 'clang_warning_flags': [
333 # Avoid warning for undefined behaviour. https://crbug.com/507712 340 # Avoid warning for undefined behaviour. https://crbug.com/507712
334 '-Wno-shift-negative-value', 341 '-Wno-shift-negative-value',
335 ] 342 ]
336 }, 343 },
337 }, 344 },
338 { 345 {
339 'target_name': 'pdfium_base', 346 'target_name': 'pdfium_base',
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 'libtiff/tif_version.c', 399 'libtiff/tif_version.c',
393 'libtiff/tif_warning.c', 400 'libtiff/tif_warning.c',
394 'libtiff/tif_write.c', 401 'libtiff/tif_write.c',
395 'libtiff/tif_zip.c', 402 'libtiff/tif_zip.c',
396 ], 403 ],
397 }, 404 },
398 ], 405 ],
399 }], 406 }],
400 ], 407 ],
401 } 408 }
OLDNEW
« no previous file with comments | « skia/skia_common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698