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 1622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1633 ":pdfium", | 1633 ":pdfium", |
1634 ":test_support", | 1634 ":test_support", |
1635 "//testing/gtest", | 1635 "//testing/gtest", |
1636 "//testing/gtest:gtest_main", | 1636 "//testing/gtest:gtest_main", |
1637 ] | 1637 ] |
1638 include_dirs = [] | 1638 include_dirs = [] |
1639 if (pdf_enable_xfa) { | 1639 if (pdf_enable_xfa) { |
1640 sources += [ | 1640 sources += [ |
1641 "xfa/fde/xml/fde_xml_imp_unittest.cpp", | 1641 "xfa/fde/xml/fde_xml_imp_unittest.cpp", |
1642 "xfa/fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp", | 1642 "xfa/fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp", |
| 1643 "xfa/fxfa/app/xfa_textlayout_unittest.cpp", |
1643 "xfa/fxfa/parser/xfa_utils_imp_unittest.cpp", | 1644 "xfa/fxfa/parser/xfa_utils_imp_unittest.cpp", |
1644 ] | 1645 ] |
1645 } | 1646 } |
1646 if (pdf_enable_v8) { | 1647 if (pdf_enable_v8) { |
1647 sources += [ "fpdfsdk/javascript/public_methods_unittest.cpp" ] | 1648 sources += [ "fpdfsdk/javascript/public_methods_unittest.cpp" ] |
1648 include_dirs += [ | 1649 include_dirs += [ |
1649 "//v8", | 1650 "//v8", |
1650 "//v8/include", | 1651 "//v8/include", |
1651 ] | 1652 ] |
1652 } | 1653 } |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1706 } | 1707 } |
1707 | 1708 |
1708 if (pdf_is_standalone) { | 1709 if (pdf_is_standalone) { |
1709 source_set("samples") { | 1710 source_set("samples") { |
1710 testonly = true | 1711 testonly = true |
1711 deps = [ | 1712 deps = [ |
1712 "//samples", | 1713 "//samples", |
1713 ] | 1714 ] |
1714 } | 1715 } |
1715 } | 1716 } |
OLD | NEW |