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 1215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1714 "//v8:v8_libplatform", | 1711 "//v8:v8_libplatform", |
1715 ] | 1712 ] |
1716 include_dirs += [ | 1713 include_dirs += [ |
1717 "//v8", | 1714 "//v8", |
1718 "//v8/include", | 1715 "//v8/include", |
1719 ] | 1716 ] |
1720 configs += [ "//v8:external_startup_data" ] | 1717 configs += [ "//v8:external_startup_data" ] |
1721 } | 1718 } |
1722 configs += [ ":pdfium_config" ] | 1719 configs += [ ":pdfium_config" ] |
1723 } | 1720 } |
OLD | NEW |