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

Side by Side Diff: pdfium.gyp

Issue 1502343007: XFA: Hide xfa targets in gyp (similar to GN) (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 5 years 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 | « build/all.gyp ('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 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 633 matching lines...) Expand 10 before | Expand all | Expand 10 after
644 'fpdfsdk/src/pdfwindow/PWL_ListCtrl.cpp', 644 'fpdfsdk/src/pdfwindow/PWL_ListCtrl.cpp',
645 'fpdfsdk/src/pdfwindow/PWL_Note.cpp', 645 'fpdfsdk/src/pdfwindow/PWL_Note.cpp',
646 'fpdfsdk/src/pdfwindow/PWL_ScrollBar.cpp', 646 'fpdfsdk/src/pdfwindow/PWL_ScrollBar.cpp',
647 'fpdfsdk/src/pdfwindow/PWL_Signature.cpp', 647 'fpdfsdk/src/pdfwindow/PWL_Signature.cpp',
648 'fpdfsdk/src/pdfwindow/PWL_SpecialButton.cpp', 648 'fpdfsdk/src/pdfwindow/PWL_SpecialButton.cpp',
649 'fpdfsdk/src/pdfwindow/PWL_Utils.cpp', 649 'fpdfsdk/src/pdfwindow/PWL_Utils.cpp',
650 'fpdfsdk/src/pdfwindow/PWL_Wnd.cpp', 650 'fpdfsdk/src/pdfwindow/PWL_Wnd.cpp',
651 ], 651 ],
652 }, 652 },
653 { 653 {
654 'target_name': 'fpdfxfa',
655 'type': 'static_library',
656 'dependencies': [
657 'javascript',
658 'xfa.gyp:xfa',
659 ],
660 'sources': [
661 'fpdfsdk/src/fpdfxfa/fpdfxfa_app.cpp',
662 'fpdfsdk/src/fpdfxfa/fpdfxfa_doc.cpp',
663 'fpdfsdk/src/fpdfxfa/fpdfxfa_page.cpp',
664 'fpdfsdk/src/fpdfxfa/fpdfxfa_util.cpp',
665 'fpdfsdk/include/fpdfxfa/fpdfxfa_app.h',
666 'fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h',
667 'fpdfsdk/include/fpdfxfa/fpdfxfa_page.h',
668 'fpdfsdk/include/fpdfxfa/fpdfxfa_util.h',
669 ],
670 },
671 {
672 'target_name': 'javascript', 654 'target_name': 'javascript',
673 'type': 'static_library', 655 'type': 'static_library',
674 'sources': [ 656 'sources': [
675 'fpdfsdk/include/javascript/IJavaScript.h', 657 'fpdfsdk/include/javascript/IJavaScript.h',
676 'fpdfsdk/src/javascript/JS_Runtime_Stub.cpp', 658 'fpdfsdk/src/javascript/JS_Runtime_Stub.cpp',
677 ], 659 ],
678 'conditions': [ 660 'conditions': [
679 ['pdf_enable_v8==1', { 661 ['pdf_enable_v8==1', {
680 'include_dirs': [ 662 'include_dirs': [
681 '<(DEPTH)/v8', 663 '<(DEPTH)/v8',
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
868 '<(DEPTH)/v8/include', 850 '<(DEPTH)/v8/include',
869 ], 851 ],
870 'dependencies': [ 852 'dependencies': [
871 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', 853 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
872 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8_libplatform', 854 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8_libplatform',
873 ], 855 ],
874 }], 856 }],
875 ], 857 ],
876 }, 858 },
877 ], 859 ],
860 'conditions': [
861 ['pdf_enable_xfa==1', {
862 'targets': [
863 {
864 'target_name': 'fpdfxfa',
865 'type': 'static_library',
866 'dependencies': [
867 'javascript',
868 'xfa.gyp:xfa',
869 ],
870 'sources': [
871 'fpdfsdk/src/fpdfxfa/fpdfxfa_app.cpp',
872 'fpdfsdk/src/fpdfxfa/fpdfxfa_doc.cpp',
873 'fpdfsdk/src/fpdfxfa/fpdfxfa_page.cpp',
874 'fpdfsdk/src/fpdfxfa/fpdfxfa_util.cpp',
875 'fpdfsdk/include/fpdfxfa/fpdfxfa_app.h',
876 'fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h',
877 'fpdfsdk/include/fpdfxfa/fpdfxfa_page.h',
878 'fpdfsdk/include/fpdfxfa/fpdfxfa_util.h',
879 ],
880 },
881 ]
882 }],
883 ]
878 } 884 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698