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 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
639 "core/fxcrt/include/fx_stream.h", | 639 "core/fxcrt/include/fx_stream.h", |
640 "core/fxcrt/include/fx_string.h", | 640 "core/fxcrt/include/fx_string.h", |
641 "core/fxcrt/include/fx_system.h", | 641 "core/fxcrt/include/fx_system.h", |
642 "core/fxcrt/include/fx_ucd.h", | 642 "core/fxcrt/include/fx_ucd.h", |
643 "core/fxcrt/include/fx_xml.h", | 643 "core/fxcrt/include/fx_xml.h", |
644 "core/fxcrt/plex.h", | 644 "core/fxcrt/plex.h", |
645 "core/fxcrt/xml_int.h", | 645 "core/fxcrt/xml_int.h", |
646 ] | 646 ] |
647 if (pdf_enable_xfa) { | 647 if (pdf_enable_xfa) { |
648 sources += [ | 648 sources += [ |
649 "core/fxcrt/fx_arabic.cpp", | |
650 "core/fxcrt/fx_arabic.h", | 649 "core/fxcrt/fx_arabic.h", |
651 "core/fxcrt/fx_basic_maps.cpp", | 650 "core/fxcrt/fx_basic_maps.cpp", |
| 651 "core/fxcrt/include/fx_arabic.cpp", |
652 "core/fxcrt/include/fx_arb.h", | 652 "core/fxcrt/include/fx_arb.h", |
653 ] | 653 ] |
654 } | 654 } |
655 configs += [ ":pdfium_config" ] | 655 configs += [ ":pdfium_config" ] |
656 } | 656 } |
657 | 657 |
658 static_library("fxge") { | 658 static_library("fxge") { |
659 deps = [ | 659 deps = [ |
660 "third_party:fx_agg", | 660 "third_party:fx_agg", |
661 ] | 661 ] |
(...skipping 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1731 "//v8:v8_libplatform", | 1731 "//v8:v8_libplatform", |
1732 ] | 1732 ] |
1733 include_dirs += [ | 1733 include_dirs += [ |
1734 "//v8", | 1734 "//v8", |
1735 "//v8/include", | 1735 "//v8/include", |
1736 ] | 1736 ] |
1737 configs += [ "//v8:external_startup_data" ] | 1737 configs += [ "//v8:external_startup_data" ] |
1738 } | 1738 } |
1739 configs += [ ":pdfium_config" ] | 1739 configs += [ ":pdfium_config" ] |
1740 } | 1740 } |
OLD | NEW |