Chromium Code Reviews| 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': [ | 563 'include_dirs': [ |
|
dsinclair
2016/03/03 18:40:11
These should probably be removed and we do third_p
caryclark
2016/03/03 21:03:44
Done.
| |
| 565 '<(DEPTH)/third_party/skia/include/config', | 564 '<(DEPTH)/third_party/skia/include/config', |
| 566 '<(DEPTH)/third_party/skia/include/core', | 565 '<(DEPTH)/third_party/skia/include/core', |
| 567 '<(DEPTH)/third_party/skia/include/effects', | 566 '<(DEPTH)/third_party/skia/include/effects', |
| 568 '<(DEPTH)/third_party/skia/include/images', | 567 '<(DEPTH)/third_party/skia/include/images', |
|
dsinclair
2016/03/03 18:40:11
Out of curiosity, did you check the skia dir out m
caryclark
2016/03/03 21:03:44
I am doing the build inside a Chromium tree for no
| |
| 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 ], | 568 ], |
| 574 }], | 569 }], |
| 575 ['OS=="win"', { | 570 ['OS=="win"', { |
| 576 'defines!': [ | 571 'defines!': [ |
| 577 'WIN32_LEAN_AND_MEAN' | 572 'WIN32_LEAN_AND_MEAN' |
| 578 ], | 573 ], |
| 579 'sources': [ | 574 'sources': [ |
| 580 'core/src/fxge/win32/dwrite_int.h', | 575 'core/src/fxge/win32/dwrite_int.h', |
| 581 'core/src/fxge/win32/fx_win32_device.cpp', | 576 'core/src/fxge/win32/fx_win32_device.cpp', |
| 582 'core/src/fxge/win32/fx_win32_dib.cpp', | 577 'core/src/fxge/win32/fx_win32_dib.cpp', |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 876 'fpdfsdk/include/fpdfxfa/fpdfxfa_app.h', | 871 'fpdfsdk/include/fpdfxfa/fpdfxfa_app.h', |
| 877 'fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h', | 872 'fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h', |
| 878 'fpdfsdk/include/fpdfxfa/fpdfxfa_page.h', | 873 'fpdfsdk/include/fpdfxfa/fpdfxfa_page.h', |
| 879 'fpdfsdk/include/fpdfxfa/fpdfxfa_util.h', | 874 'fpdfsdk/include/fpdfxfa/fpdfxfa_util.h', |
| 880 ], | 875 ], |
| 881 }, | 876 }, |
| 882 ] | 877 ] |
| 883 }], | 878 }], |
| 884 ] | 879 ] |
| 885 } | 880 } |
| OLD | NEW |