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 1026 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1037 "fxjs/include/cfxjse_value.h", | 1037 "fxjs/include/cfxjse_value.h", |
1038 "fxjs/include/fxjse.h", | 1038 "fxjs/include/fxjse.h", |
1039 ] | 1039 ] |
1040 } | 1040 } |
1041 } | 1041 } |
1042 } | 1042 } |
1043 | 1043 |
1044 if (pdf_enable_xfa) { | 1044 if (pdf_enable_xfa) { |
1045 static_library("fpdfxfa") { | 1045 static_library("fpdfxfa") { |
1046 sources = [ | 1046 sources = [ |
| 1047 "fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.cpp", |
1047 "fpdfsdk/fpdfxfa/fpdfxfa_app.cpp", | 1048 "fpdfsdk/fpdfxfa/fpdfxfa_app.cpp", |
1048 "fpdfsdk/fpdfxfa/fpdfxfa_doc.cpp", | 1049 "fpdfsdk/fpdfxfa/fpdfxfa_doc.cpp", |
1049 "fpdfsdk/fpdfxfa/fpdfxfa_page.cpp", | 1050 "fpdfsdk/fpdfxfa/fpdfxfa_page.cpp", |
1050 "fpdfsdk/fpdfxfa/fpdfxfa_util.cpp", | 1051 "fpdfsdk/fpdfxfa/fpdfxfa_util.cpp", |
| 1052 "fpdfsdk/fpdfxfa/include/cpdfxfa_docenvironment.h", |
1051 "fpdfsdk/fpdfxfa/include/fpdfxfa_app.h", | 1053 "fpdfsdk/fpdfxfa/include/fpdfxfa_app.h", |
1052 "fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h", | 1054 "fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h", |
1053 "fpdfsdk/fpdfxfa/include/fpdfxfa_page.h", | 1055 "fpdfsdk/fpdfxfa/include/fpdfxfa_page.h", |
1054 "fpdfsdk/fpdfxfa/include/fpdfxfa_util.h", | 1056 "fpdfsdk/fpdfxfa/include/fpdfxfa_util.h", |
1055 ] | 1057 ] |
1056 deps = [ | 1058 deps = [ |
1057 ":fxcrt", | 1059 ":fxcrt", |
1058 ":xfa", | 1060 ":xfa", |
1059 ] | 1061 ] |
1060 configs += [ ":pdfium_core_config" ] | 1062 configs += [ ":pdfium_core_config" ] |
(...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1746 } | 1748 } |
1747 | 1749 |
1748 if (pdf_is_standalone) { | 1750 if (pdf_is_standalone) { |
1749 source_set("samples") { | 1751 source_set("samples") { |
1750 testonly = true | 1752 testonly = true |
1751 deps = [ | 1753 deps = [ |
1752 "//samples", | 1754 "//samples", |
1753 ] | 1755 ] |
1754 } | 1756 } |
1755 } | 1757 } |
OLD | NEW |