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 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
531 "core/fpdfapi/fpdf_render/include/cpdf_textrenderer.h", | 531 "core/fpdfapi/fpdf_render/include/cpdf_textrenderer.h", |
532 "core/fpdfapi/fpdf_render/render_int.h", | 532 "core/fpdfapi/fpdf_render/render_int.h", |
533 "core/fpdfapi/include/cpdf_modulemgr.h", | 533 "core/fpdfapi/include/cpdf_modulemgr.h", |
534 "core/fpdfapi/include/cpdf_pagerendercontext.h", | 534 "core/fpdfapi/include/cpdf_pagerendercontext.h", |
535 ] | 535 ] |
536 configs += [ ":pdfium_core_config" ] | 536 configs += [ ":pdfium_core_config" ] |
537 } | 537 } |
538 | 538 |
539 static_library("fpdftext") { | 539 static_library("fpdftext") { |
540 sources = [ | 540 sources = [ |
541 "core/fpdftext/fpdf_text_int.cpp", | 541 "core/fpdftext/cpdf_linkextract.cpp", |
| 542 "core/fpdftext/cpdf_textpage.cpp", |
| 543 "core/fpdftext/cpdf_textpagefind.cpp", |
542 "core/fpdftext/include/cpdf_linkextract.h", | 544 "core/fpdftext/include/cpdf_linkextract.h", |
543 "core/fpdftext/include/cpdf_textpage.h", | 545 "core/fpdftext/include/cpdf_textpage.h", |
544 "core/fpdftext/include/cpdf_textpagefind.h", | 546 "core/fpdftext/include/cpdf_textpagefind.h", |
545 "core/fpdftext/text_int.h", | 547 "core/fpdftext/text_int.h", |
546 "core/fpdftext/unicodenormalizationdata.cpp", | 548 "core/fpdftext/unicodenormalizationdata.cpp", |
547 "core/fpdftext/unicodenormalizationdata.h", | 549 "core/fpdftext/unicodenormalizationdata.h", |
548 ] | 550 ] |
549 configs += [ ":pdfium_core_config" ] | 551 configs += [ ":pdfium_core_config" ] |
550 } | 552 } |
551 | 553 |
(...skipping 1147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1699 } | 1701 } |
1700 | 1702 |
1701 if (pdf_is_standalone) { | 1703 if (pdf_is_standalone) { |
1702 source_set("samples") { | 1704 source_set("samples") { |
1703 testonly = true | 1705 testonly = true |
1704 deps = [ | 1706 deps = [ |
1705 "//samples", | 1707 "//samples", |
1706 ] | 1708 ] |
1707 } | 1709 } |
1708 } | 1710 } |
OLD | NEW |