OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium 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 import("//build_overrides/v8.gni") | 5 import("//build_overrides/v8.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("pdfium.gni") | 7 import("pdfium.gni") |
8 | 8 |
9 config("pdfium_common_config") { | 9 config("pdfium_common_config") { |
10 cflags = [] | 10 cflags = [] |
(...skipping 1036 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1047 "fxjs/cfxjse_value.h", | 1047 "fxjs/cfxjse_value.h", |
1048 "fxjs/fxjse.h", | 1048 "fxjs/fxjse.h", |
1049 ] | 1049 ] |
1050 } | 1050 } |
1051 } | 1051 } |
1052 } | 1052 } |
1053 | 1053 |
1054 if (pdf_enable_xfa) { | 1054 if (pdf_enable_xfa) { |
1055 static_library("fpdfxfa") { | 1055 static_library("fpdfxfa") { |
1056 sources = [ | 1056 sources = [ |
1057 "fpdfsdk/fpdfxfa/cpdfxfa_app.cpp", | |
1058 "fpdfsdk/fpdfxfa/cpdfxfa_app.h", | |
1059 "fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.cpp", | 1057 "fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.cpp", |
1060 "fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.h", | 1058 "fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.h", |
1061 "fpdfsdk/fpdfxfa/cpdfxfa_document.cpp", | 1059 "fpdfsdk/fpdfxfa/cpdfxfa_document.cpp", |
1062 "fpdfsdk/fpdfxfa/cpdfxfa_document.h", | 1060 "fpdfsdk/fpdfxfa/cpdfxfa_document.h", |
1063 "fpdfsdk/fpdfxfa/cpdfxfa_page.cpp", | 1061 "fpdfsdk/fpdfxfa/cpdfxfa_page.cpp", |
1064 "fpdfsdk/fpdfxfa/cpdfxfa_page.h", | 1062 "fpdfsdk/fpdfxfa/cpdfxfa_page.h", |
1065 "fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.cpp", | 1063 "fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.cpp", |
1066 "fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h", | 1064 "fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h", |
1067 ] | 1065 ] |
1068 deps = [ | 1066 deps = [ |
(...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1755 } | 1753 } |
1756 | 1754 |
1757 if (pdf_is_standalone) { | 1755 if (pdf_is_standalone) { |
1758 source_set("samples") { | 1756 source_set("samples") { |
1759 testonly = true | 1757 testonly = true |
1760 deps = [ | 1758 deps = [ |
1761 "//samples", | 1759 "//samples", |
1762 ] | 1760 ] |
1763 } | 1761 } |
1764 } | 1762 } |
OLD | NEW |