| 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_config") { | 9 config("pdfium_config") { |
| 10 cflags = [] | 10 cflags = [] |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 "core/fpdfdoc/include/fpdf_tagged.h", | 237 "core/fpdfdoc/include/fpdf_tagged.h", |
| 238 "core/fpdfdoc/ipvt_fontmap.h", | 238 "core/fpdfdoc/ipvt_fontmap.h", |
| 239 "core/fpdfdoc/pdf_vt.h", | 239 "core/fpdfdoc/pdf_vt.h", |
| 240 "core/fpdfdoc/tagged_int.h", | 240 "core/fpdfdoc/tagged_int.h", |
| 241 ] | 241 ] |
| 242 configs += [ ":pdfium_config" ] | 242 configs += [ ":pdfium_config" ] |
| 243 } | 243 } |
| 244 | 244 |
| 245 static_library("fpdfapi") { | 245 static_library("fpdfapi") { |
| 246 sources = [ | 246 sources = [ |
| 247 "core/fpdfapi/fpdf_basic_module.cpp", | 247 "core/fpdfapi/cpdf_modulemgr.cpp", |
| 248 "core/fpdfapi/fpdf_cmaps/CNS1/Adobe-CNS1-UCS2_5.cpp", | 248 "core/fpdfapi/fpdf_cmaps/CNS1/Adobe-CNS1-UCS2_5.cpp", |
| 249 "core/fpdfapi/fpdf_cmaps/CNS1/B5pc-H_0.cpp", | 249 "core/fpdfapi/fpdf_cmaps/CNS1/B5pc-H_0.cpp", |
| 250 "core/fpdfapi/fpdf_cmaps/CNS1/B5pc-V_0.cpp", | 250 "core/fpdfapi/fpdf_cmaps/CNS1/B5pc-V_0.cpp", |
| 251 "core/fpdfapi/fpdf_cmaps/CNS1/CNS-EUC-H_0.cpp", | 251 "core/fpdfapi/fpdf_cmaps/CNS1/CNS-EUC-H_0.cpp", |
| 252 "core/fpdfapi/fpdf_cmaps/CNS1/CNS-EUC-V_0.cpp", | 252 "core/fpdfapi/fpdf_cmaps/CNS1/CNS-EUC-V_0.cpp", |
| 253 "core/fpdfapi/fpdf_cmaps/CNS1/ETen-B5-H_0.cpp", | 253 "core/fpdfapi/fpdf_cmaps/CNS1/ETen-B5-H_0.cpp", |
| 254 "core/fpdfapi/fpdf_cmaps/CNS1/ETen-B5-V_0.cpp", | 254 "core/fpdfapi/fpdf_cmaps/CNS1/ETen-B5-V_0.cpp", |
| 255 "core/fpdfapi/fpdf_cmaps/CNS1/ETenms-B5-H_0.cpp", | 255 "core/fpdfapi/fpdf_cmaps/CNS1/ETenms-B5-H_0.cpp", |
| 256 "core/fpdfapi/fpdf_cmaps/CNS1/ETenms-B5-V_0.cpp", | 256 "core/fpdfapi/fpdf_cmaps/CNS1/ETenms-B5-V_0.cpp", |
| 257 "core/fpdfapi/fpdf_cmaps/CNS1/HKscs-B5-H_5.cpp", | 257 "core/fpdfapi/fpdf_cmaps/CNS1/HKscs-B5-H_5.cpp", |
| (...skipping 1450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1708 } | 1708 } |
| 1709 | 1709 |
| 1710 if (pdf_is_standalone) { | 1710 if (pdf_is_standalone) { |
| 1711 source_set("samples") { | 1711 source_set("samples") { |
| 1712 testonly = true | 1712 testonly = true |
| 1713 deps = [ | 1713 deps = [ |
| 1714 "//samples", | 1714 "//samples", |
| 1715 ] | 1715 ] |
| 1716 } | 1716 } |
| 1717 } | 1717 } |
| OLD | NEW |