| 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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 "core/fpdfapi/include/cpdf_modulemgr.h", | 472 "core/fpdfapi/include/cpdf_modulemgr.h", |
| 473 "core/fpdfapi/ipdf_pagemodule.h", | 473 "core/fpdfapi/ipdf_pagemodule.h", |
| 474 "core/fpdfapi/ipdf_rendermodule.h", | 474 "core/fpdfapi/ipdf_rendermodule.h", |
| 475 ] | 475 ] |
| 476 configs += [ ":pdfium_config" ] | 476 configs += [ ":pdfium_config" ] |
| 477 } | 477 } |
| 478 | 478 |
| 479 static_library("fpdftext") { | 479 static_library("fpdftext") { |
| 480 sources = [ | 480 sources = [ |
| 481 "core/fpdftext/fpdf_text_int.cpp", | 481 "core/fpdftext/fpdf_text_int.cpp", |
| 482 "core/fpdftext/fpdf_text_int.h", | 482 "core/fpdftext/include/cpdf_linkextract.h", |
| 483 "core/fpdftext/include/ipdf_linkextract.h", | 483 "core/fpdftext/include/cpdf_textpage.h", |
| 484 "core/fpdftext/include/ipdf_textpage.h", | 484 "core/fpdftext/include/cpdf_textpagefind.h", |
| 485 "core/fpdftext/include/ipdf_textpagefind.h", | |
| 486 "core/fpdftext/text_int.h", | 485 "core/fpdftext/text_int.h", |
| 487 "core/fpdftext/unicodenormalization.cpp", | |
| 488 "core/fpdftext/unicodenormalization.h", | |
| 489 "core/fpdftext/unicodenormalizationdata.cpp", | 486 "core/fpdftext/unicodenormalizationdata.cpp", |
| 490 "core/fpdftext/unicodenormalizationdata.h", | 487 "core/fpdftext/unicodenormalizationdata.h", |
| 491 ] | 488 ] |
| 492 configs += [ ":pdfium_config" ] | 489 configs += [ ":pdfium_config" ] |
| 493 } | 490 } |
| 494 | 491 |
| 495 static_library("fxcodec") { | 492 static_library("fxcodec") { |
| 496 deps = [ | 493 deps = [ |
| 497 "third_party:fx_lcms2", | 494 "third_party:fx_lcms2", |
| 498 "third_party:fx_libopenjpeg", | 495 "third_party:fx_libopenjpeg", |
| (...skipping 1216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1715 "//v8:v8_libplatform", | 1712 "//v8:v8_libplatform", |
| 1716 ] | 1713 ] |
| 1717 include_dirs += [ | 1714 include_dirs += [ |
| 1718 "//v8", | 1715 "//v8", |
| 1719 "//v8/include", | 1716 "//v8/include", |
| 1720 ] | 1717 ] |
| 1721 configs += [ "//v8:external_startup_data" ] | 1718 configs += [ "//v8:external_startup_data" ] |
| 1722 } | 1719 } |
| 1723 configs += [ ":pdfium_config" ] | 1720 configs += [ ":pdfium_config" ] |
| 1724 } | 1721 } |
| OLD | NEW |