| 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 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1060 "fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.h", | 1060 "fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.h", |
| 1061 "fpdfsdk/fpdfxfa/cpdfxfa_document.cpp", | 1061 "fpdfsdk/fpdfxfa/cpdfxfa_document.cpp", |
| 1062 "fpdfsdk/fpdfxfa/cpdfxfa_document.h", | 1062 "fpdfsdk/fpdfxfa/cpdfxfa_document.h", |
| 1063 "fpdfsdk/fpdfxfa/cpdfxfa_page.cpp", | 1063 "fpdfsdk/fpdfxfa/cpdfxfa_page.cpp", |
| 1064 "fpdfsdk/fpdfxfa/cpdfxfa_page.h", | 1064 "fpdfsdk/fpdfxfa/cpdfxfa_page.h", |
| 1065 "fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.cpp", | 1065 "fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.cpp", |
| 1066 "fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h", | 1066 "fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h", |
| 1067 ] | 1067 ] |
| 1068 deps = [ | 1068 deps = [ |
| 1069 ":fxcrt", | 1069 ":fxcrt", |
| 1070 ":fxjs", |
| 1070 ":xfa", | 1071 ":xfa", |
| 1071 ] | 1072 ] |
| 1072 configs += [ ":pdfium_core_config" ] | 1073 configs += [ ":pdfium_core_config" ] |
| 1073 } | 1074 } |
| 1074 | 1075 |
| 1075 static_library("xfa") { | 1076 static_library("xfa") { |
| 1076 sources = [ | 1077 sources = [ |
| 1077 "xfa/fde/cfde_path.cpp", | 1078 "xfa/fde/cfde_path.cpp", |
| 1078 "xfa/fde/cfde_path.h", | 1079 "xfa/fde/cfde_path.h", |
| 1079 "xfa/fde/cfde_txtedtbuf.cpp", | 1080 "xfa/fde/cfde_txtedtbuf.cpp", |
| (...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1754 } | 1755 } |
| 1755 | 1756 |
| 1756 if (pdf_is_standalone) { | 1757 if (pdf_is_standalone) { |
| 1757 source_set("samples") { | 1758 source_set("samples") { |
| 1758 testonly = true | 1759 testonly = true |
| 1759 deps = [ | 1760 deps = [ |
| 1760 "//samples", | 1761 "//samples", |
| 1761 ] | 1762 ] |
| 1762 } | 1763 } |
| 1763 } | 1764 } |
| OLD | NEW |