| OLD | NEW |
| 1 # Copyright 2015 PDFium Authors. All rights reserved. | 1 # Copyright 2015 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 # TODO(thakis): Enable this, pdfium:29 | 7 # TODO(thakis): Enable this, pdfium:29 |
| 8 #'chromium_code': 1, | 8 #'chromium_code': 1, |
| 9 'pdf_use_skia%': 0, | 9 'pdf_use_skia%': 0, |
| 10 'pdf_enable_v8%': 1, | 10 'pdf_enable_v8%': 1, |
| (...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 548 ], | 548 ], |
| 549 'variables': { | 549 'variables': { |
| 550 'clang_warning_flags': [ | 550 'clang_warning_flags': [ |
| 551 # http://code.google.com/p/pdfium/issues/detail?id=188 | 551 # http://code.google.com/p/pdfium/issues/detail?id=188 |
| 552 '-Wno-switch', | 552 '-Wno-switch', |
| 553 ], | 553 ], |
| 554 }, | 554 }, |
| 555 'conditions': [ | 555 'conditions': [ |
| 556 ['pdf_use_skia==1', { | 556 ['pdf_use_skia==1', { |
| 557 'sources': [ | 557 'sources': [ |
| 558 'core/src/fxge/skia/fx_skia_blitter_new.cpp', | |
| 559 'core/src/fxge/skia/fx_skia_device.cpp', | 558 'core/src/fxge/skia/fx_skia_device.cpp', |
| 560 ], | 559 ], |
| 561 'dependencies': [ | 560 'dependencies': [ |
| 562 '<(DEPTH)/skia/skia.gyp:skia', | 561 '<(DEPTH)/skia/skia.gyp:skia', |
| 563 ], | 562 ], |
| 564 'include_dirs': [ | |
| 565 '<(DEPTH)/third_party/skia/include/config', | |
| 566 '<(DEPTH)/third_party/skia/include/core', | |
| 567 '<(DEPTH)/third_party/skia/include/effects', | |
| 568 '<(DEPTH)/third_party/skia/include/images', | |
| 569 '<(DEPTH)/third_party/skia/include/lazy', | |
| 570 '<(DEPTH)/third_party/skia/include/pathops', | |
| 571 '<(DEPTH)/third_party/skia/include/utils', | |
| 572 '<(DEPTH)/third_party/skia/src/core', | |
| 573 ], | |
| 574 }], | 563 }], |
| 575 ['OS=="win"', { | 564 ['OS=="win"', { |
| 576 'defines!': [ | 565 'defines!': [ |
| 577 'WIN32_LEAN_AND_MEAN' | 566 'WIN32_LEAN_AND_MEAN' |
| 578 ], | 567 ], |
| 579 'sources': [ | 568 'sources': [ |
| 580 'core/src/fxge/win32/dwrite_int.h', | 569 'core/src/fxge/win32/dwrite_int.h', |
| 581 'core/src/fxge/win32/fx_win32_device.cpp', | 570 'core/src/fxge/win32/fx_win32_device.cpp', |
| 582 'core/src/fxge/win32/fx_win32_dib.cpp', | 571 'core/src/fxge/win32/fx_win32_dib.cpp', |
| 583 'core/src/fxge/win32/fx_win32_dwrite.cpp', | 572 'core/src/fxge/win32/fx_win32_dwrite.cpp', |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 876 'fpdfsdk/include/fpdfxfa/fpdfxfa_app.h', | 865 'fpdfsdk/include/fpdfxfa/fpdfxfa_app.h', |
| 877 'fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h', | 866 'fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h', |
| 878 'fpdfsdk/include/fpdfxfa/fpdfxfa_page.h', | 867 'fpdfsdk/include/fpdfxfa/fpdfxfa_page.h', |
| 879 'fpdfsdk/include/fpdfxfa/fpdfxfa_util.h', | 868 'fpdfsdk/include/fpdfxfa/fpdfxfa_util.h', |
| 880 ], | 869 ], |
| 881 }, | 870 }, |
| 882 ] | 871 ] |
| 883 }], | 872 }], |
| 884 ] | 873 ] |
| 885 } | 874 } |
| OLD | NEW |